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