我正在想办法添加rel="nofollow"
“我的评论”分页链接<谁能给我一个钩子或方法吗?
如何不跟随分页的评论
1 个回复
最合适的回答,由SO网友:fuxia 整理而成
有两种特殊过滤器:
add_filter( \'previous_comments_link_attributes\', \'wpse_77217_comment_nofollow\' );
add_filter( \'next_comments_link_attributes\', \'wpse_77217_comment_nofollow\' );
function wpse_77217_comment_nofollow()
{
return \' rel="nofollow"\';
}
结束