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