试试这个
add_filter( \'get_the_excerpt\', \'strip_shortcodes\', 20 );
或尝试此编辑
echo strip_shortcodes( get_the_excerpt() );
如果短码未注册到wordpress函数add\\u shortcode
add_filter( \'the_excerpt\', \'remove_shortcodes_in_excerpt\', 20 );
function remove_shortcodes_in_excerpt( $content){
$content = strip_shortcodes($content);
$tagnames = array(\'box\', \'alert\'); // add shortcode tag name [box]content[/box] tagname = box
$content = do_shortcodes_in_html_tags( $content, true, $tagnames );
$pattern = get_shortcode_regex( $tagnames );
$content = preg_replace_callback( "/$pattern/", \'strip_shortcode_tag\', $content );
return $content;
}