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

11 lines
258 B
PHP

<?php
/*
* wrapper for tables
*/
function wpv_shortcode_styled_table($atts, $content = null, $code) {
return "<div class='styled_table'>" . do_shortcode(trim($content)) . '</div>';
}
add_shortcode('styled_table','wpv_shortcode_styled_table');