请尝试以下代码:
function caption_shortcode( $atts, $content = null ) {
$content = do_shortcode($content);
return \'<span itemprop="articleSection">\'. str_replace( array( \'<\', \'>\' ), array( \'<\', \'>\' ), $content ) .\'</span>\';
}
add_shortcode( \'source\', \'caption_shortcode\' );
remove_filter( \'the_content\', \'wpautop\' );
remove_filter( \'the_excerpt\', \'wpautop\' );