对于评论页面,请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;
}