| Current Path : /home/smartbloks/.trash/docly-core/shortcodes/ |
| Current File : /home/smartbloks/.trash/docly-core/shortcodes/tooltip.php |
<?php
add_shortcode( 'docly_tooltip', function( $atts, $content ) {
ob_start();
$atts = shortcode_atts( array(
'id' => '1',
), $atts );
wp_enqueue_script('tooltipster');
?>
<a href="#" class="tooltips" data-tooltip-content="#tooltip-<?php echo esc_attr($atts['id']) ?>">
<?php echo wp_kses_post($content) ?>
</a>
<?php
$html = ob_get_clean();
return $html;
});