最近发现好多打广告的啊。。。于是我决定给评论加个nofollow属性。。
顺便优化以下,要加的地方有两个,一个是评论者的链接,还有就是那个“回复”这也是个链接。
代码如下:
- //为评论者添加nofollow属性
- functionadd_nofollow_to_comments_popup_link(){
- return'rel="nofollow"';
- }
- add_filter('comments_popup_link_attributes', 'add_nofollow_to_comments_popup_link');
- //为评论回复链接加nofollow属性
- add_filter('comment_reply_link', 'add_nofollow_to_replay_link');
- functionadd_nofollow_to_replay_link($link){
- returnstr_replace( '")\'>', '")\' rel=\'nofollow\'>',$link);
- }
以后对于广告都放行。。打个广告也不容易
评论 (0)