我发现这是一个已知的bug,将在将来的版本中修复Reference here 所以,我用了这个代码。。。不漂亮,但请施展魔法!,谢谢
$content = do_shortcode( shortcode_unautop( $content ) );
if ( \'</p>\' == substr( $content, 0, 4 )
and \'<p>\' == substr( $content, strlen( $content ) - 3 ) )
$content = substr( $content, 4, strlen( $content ) - 7 );
return \'<div my stuff>\' . $content . \'</div>\';