有些地方是wordpress默认就用的功能,但是,我们在做seo优化的时候,更多的要考虑到细节问题,所以,需要优化去掉一下。而这些链接并不一定是主题模版当中就有的。
所以,最好最快捷的方法,就是直接通过程序钩子去掉这些链接:
// 移除评论人名字的链接
function disable_comment_author_links( $author_link ) {
return strip_tags( $author_link );
}
add_filter( 'get_comment_author_link', 'disable_comment_author_links' );
// 移除评论时间的链接
function disable_comment_link( $comment_link ) {
return strip_tags( $get_comment_link );
}
add_filter( 'get_comment_link', 'disable_comment_link' );
怎么样,学会了吗,很多功能都可以用类似的方法。
评论