在我的网站上,尽管wordpress应该自动删除短代码,但摘录中显示了短代码,而且我尝试了两种不同的解决方案:
function remove_shortcode_from_excerpt($content) {
$content = strip_shortcodes( $content );
return $content;
}
add_filter(\'the_excerpt\', \'remove_shortcode_from_excerpt\');
以及
add_filter( \'the_excerpt\', \'shortcode_unautop\');
add_filter( \'the_excerpt\', \'do_shortcode\');
我在函数中添加的。我的孩子主题的php文件。
我的下一个选择是什么?