wordprsss 过滤器为add_filter(‘the_content’)为什么没起作用

作者

一句话。使用的是应该用 <?php the_content(); ?>,才会起作用。

编辑网站的时候引入好多空白段落需要删除掉

/* 内容过滤 */
add_filter('the_content', function() {
    $content = str_replace("<p></p>","",$content);
    return $content;
});

回复

您的电子邮箱地址不会被公开。