|
1
|
<?php |
|
2
|
|
|
3
|
declare(strict_types=1); |
|
4
|
|
|
5
|
if ( ! defined('ABSPATH')) { |
|
6
|
exit; |
|
7
|
} |
|
8
|
|
|
9
|
?> |
|
10
|
|
|
11
|
<template id="pointer-<?php
|
|
12
|
echo esc_attr($this->id); ?>" style="display:none;"> |
|
13
|
<h3><?php |
|
14
|
echo esc_html($this->title); ?></h3> |
|
15
|
<?php |
|
16
|
echo $this->content; ?> |
|
17
|
</template>
|