更改WordPress评论页面的模板

时间:2016-11-25 作者:Alex

我想展示the_content() 只在每篇文章的第一页,我不想显示the_content() 在评论页面中,当“将评论拆分为页面…”已启用。

有办法吗?

enter image description hereenter image description here

1 个回复
SO网友:Emil

对于评论页面,请WP_Query-风险值cpage 设置,告诉我们当前在哪个评论页面上,这样就可以过滤评论页面的内容,如下所示:

add_filter(\'the_content\', \'comment_page_hide_content\');
function comment_page_hide_content($content) {
    global $wp_query;
    if ($wp_query->get(\'cpage\') > 1){ // Greater than one, because 1 inducates the first comment page
        $content = "";
    }
    return $content;
}

相关推荐