EstudioJuridicoAlmagro_Web/www/wpv_common/shortcodes/tooltip.php
2013-03-01 18:06:10 +00:00

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');