3200creative
5/30/2014 - 9:28 PM

Allow shortcodes within shortcodes

Allow shortcodes within shortcodes

//Allow shortcodes within shortcodes
function compare_table_shortcode( $atts, $content = null ) {
	return '<div class="compare-table">' .do_shortcode($content) . '</div>';
}
add_shortcode( 'compare-table', 'compare_table_shortcode' );