the_content过滤器也应用于get_the_excerpt()

时间:2016-04-07 15:48:08

标签: wordpress wordpress-plugin

我正在尝试挂钩the_content WordPress过滤器,添加一些内容发布。使用下面的功能

function _insert_in_post($content){
if (is_single() && !is_admin() && is_main_query()) {
return $content."blah blah";
}
}

add_filter('the_content', '_insert_in_post');

正在添加内容,但我遇到的问题是它也被添加到我的相关帖子中。

相关帖子正在使用get_the_excerpt()但仍然会影响他们。

我希望它仅将此过滤器the_content应用于单个帖子内容。

我也试过使用is_main_query()条件,但是徒劳无功。

请有人帮我这方面吗?

0 个答案:

没有答案