1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php /** * CDN meta box header. * * @package WP_Smush * * @var string $title Title. * @var string $tooltip Tooltip text. */
if ( ! defined( 'WPINC' ) ) { die; }
?>
<h3 class="sui-box-title"> <?php echo esc_html( $title ); ?> </h3>
<span class="sui-tag sui-tag-beta sui-tooltip sui-tooltip-constrained" data-tooltip="<?php echo esc_attr( $tooltip ); ?>" style="margin-left: 10px"> <?php esc_html_e( 'Beta', 'wp-smushit' ); ?> </span>
|