I try to make a shortcode like
add_shortcode( 'test', 'test' );
function test( $atts, $content = null ) {
$html = '<div>'.do_shortcode( $content ).'</div>';
return $html;
}
I try some thing like [test][test]this is test[/test][/test]
But that not working.
How to fix that. Thanks
This is a limitation of the shortcode parser.
You can check out this entry from the Codex on the shortcode API, where it says: