因此get_comments_pagenum_link()
函数非常简单:
add_filter(\'get_comments_pagenum_link\' , \'new_get_comments_pagenum_link\');
function new_get_comments_pagenum_link($content) {
$content = str_ireplace(\'#comments\' , \'#other\', $content);
return $content;
}
过滤的输出
get_comments_pagenum_link()
替换
#content 具有
#other, 或您可能选择的任何其他字符串。
对于get_comments_link()
函数,它不能被过滤,我只是发现我的WordPress主题已经在它自己的评论链接函数中使用了它,所以我用上面显示的相同方法过滤了这个主题函数。