Tag Archive | "wordpress"

Tags: ,

wordpress如何给read more和comment评论链接添加nofollow?

Posted on 26 8 月 2013 by simon

对于此类链接,完全没有必要浪费爬虫的有限抓取带宽,故搜集了一下,备用!

代码如下:需要将此代码,添加到function.php文件中!

wordpress给read more链接添加nofollow

function add_nofollow_to_link($link) {
 return str_replace('<a', '<a rel="nofollow"', $link);
 }
 add_filter('the_content_more_link','add_nofollow_to_link', 0);

wordpress给comment评论链接添加nofollow

function add_nofollow_to_comments_popup_link(){
return ' rel="nofollow" ';
}
add_filter('comments_popup_link_attributes', 'add_nofollow_to_comments_popup_link');

Comments (0)

Tags:

wordpress相关文章代码增强版

Posted on 14 7 月 2012 by simon

wordpress的相关文章插件有很多,直接在后台搜索就能发现不少,不过插件的安装是必会造成网站速度的下降,YARPP插件(YARPP全称:yet another related posts)评论不错,不过我这博客还是打算用代码来实现相关功能。

wordpress相关文章核心代码 Continue Reading

Comments (4)

wordpress换空间实录,让windows的iis也支持去固定链接index.php化!

Tags: , , , ,

wordpress换空间实录,让windows的iis也支持去固定链接index.php化!

Posted on 21 2 月 2011 by simon

真是悲剧啊,先是网站被黑,惨不忍睹,后来FTP密码和数据库密码忘记了。。。(还没有备份过的习惯)

经历网站换空间,换数据库,这数据库操作真是麻烦。。。 Continue Reading

Comments (5)

斗牛SEO工具