上面的 filter 针对的都是主题开发时优化些使用率比较高的函数,基本上已经能满足我的要求了。
}
最近在做优化关键词新网站,Google 刚开始逝琶?的时候发现归档页面的排名比文排名还高,猜测原因是归档页面获得的内链太多了,因此产生优化关键词把所seo的指向归档页面的链接全部加上 rel=nofollow 属性的想法。
要达到排名关键词目的,我们完全可以用 WordPress 强网站优化的 filter 来实现。打开主题的 functions.php ,在里面加上以下的代码:
return str_replace('<a href='http://www.chinaz.com/web/2011/0125/, '<a rel="nofollow" href='http://www.chinaz.com/web/2011/0125/, $text);
//给标签云里的链接加上 rel="nofollow"
//给 the_tags() 生成的链接 加上 rel="nofollow"
add_filter('the_tags', 'cis_nofollow_the_tag');
function cis_nofollow_the_tag($text) {
return str_replace('rel="tag"', 'rel="tag nofollow"', $text);
function cis_nofollow_wp_list_categories( $text ) {
}
return $text;
//给 wp_list_categories() 生成的链接加上 rel="nofollow"
add_filter( 'wp_list_categories', 'cis_nofollow_wp_list_categories' );
$text = stripslashes($text);
$text = preg_replace_callback('|<a (.+?)>|i', 'wp_rel_nofollow_callback', $text);
}
//给 the_category() 生成的链接加上 rel="nofollow"
add_filter( 'the_category', 'cis_nofollow_the_category' );
function cis_nofollow_the_category( $text ) {
$text = str_replace('rel="category tag"', "", $text);
$text = cis_nofollow_wp_list_categories($text);
function cis_nofollow_tag_cloud($text) {
return $text;
//给 comments_popup_link_attributes() 生成的链接加上 rel="nofollow"
//给 the_author_post_link 生成的链接加上 rel="nofollow"
(来源:bolo的博客)
add_filter('the_author_posts_link', 'cis_nofollow_the_author_posts_link');
add_filter('wp_tag_cloud', 'cis_nofollow_tag_cloud');
function cis_nofollow_the_author_posts_link ($link) {
return str_replace('</a><a href='http://www.chinaz.com/web/2011/0125/, '<a rel="nofollow" href='http://www.chinaz.com/web/2011/0125/, $link);
}
add_filter('comments_popup_link_attributes', 'cis_nofollow_comments_popup_link_attributes');
function cis_nofollow_comments_popup_link_attributes () {
}
echo ' rel="nofollow"';
}
|
|