取决于短代码。如果您有权访问短代码的处理程序函数,则该函数的第二个参数是短代码内的内容:
function wpse20136_shortcode( $atts, $content ){
// $content has the content inside xxx
}
register_shortcode( \'xxx\', \'wpse20136_shortcode\' );
要获取所有非短代码的内容,这很容易。
strip_shortcodes()
是否:
strip_shortcodes( get_the_content() );
例如,将为您提供当前帖子的内容,其中仅包含不在短代码内的内容。