git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@3 c22fe52d-42d7-ba4f-95f7-33effcf65713
19 lines
369 B
PHP
19 lines
369 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');
|