19 lines
351 B
PHP
19 lines
351 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/*
|
||
|
|
* shows a tooltip when you hover the shortcodes' content
|
||
|
|
*/
|
||
|
|
|
||
|
|
function wpv_shortcode_tooltip($atts, $content = null, $code) {
|
||
|
|
extract(shortcode_atts(array(
|
||
|
|
'tooltip_content' => ''
|
||
|
|
), $atts));
|
||
|
|
|
||
|
|
ob_start();
|
||
|
|
|
||
|
|
include WPV_SHORTCODE_TEMPLATES . 'tooltip.php';
|
||
|
|
|
||
|
|
return ob_get_clean();
|
||
|
|
}
|
||
|
|
add_shortcode('tooltip', 'wpv_shortcode_tooltip');
|