您可以使用the_content_feed
钩住那个。它用于在从数据库检索文章并按“the\\u content”进行过滤之后,以及在将其发送到RSS阅读器(或浏览器)之前,过滤文章的内容。
下面是代码:
add_filter( \'the_content_feed\', function ( $content ) {
$content = str_replace( \'<div class="well"> <a class="btn" href="foo.com">foo</a></div>\', \'\', $content );
return $content;
} );