久青草国产观看在线视频,在线观看欧美日女,777毛片,亚洲国产精品99久久久久久久

WordPress SEO 技巧:內(nèi)鏈優(yōu)化

2018-08-21 wordpress經(jīng)驗(yàn)
  • 文章介紹
  • 快速入門
  • 評(píng)價(jià)&建議

最近在做一個(gè)新網(wǎng)站,Google 剛開始收錄的時(shí)候發(fā)現(xiàn)歸檔頁面的排名比文章還高,猜測原因是歸檔頁面獲得的內(nèi)鏈太多了,因此產(chǎn)生一個(gè)把所有的指向歸檔頁面的鏈接全部加上 rel=”nofollow” 屬性的想法。

要達(dá)到這個(gè)目的,我們完全可以用 WordPress 強(qiáng)大的 filter 來實(shí)現(xiàn)。打開主題的 functions.php ,在里面加上以下的代碼:

//給標(biāo)簽云里的鏈接加上 rel="nofollow"
add_filter(‘wp_tag_cloud’, ‘cis_nofollow_tag_cloud’);
function cis_nofollow_tag_cloud($text) {
return str_replace(‘<a href=’, ‘<a rel="nofollow" href=’,  $text);
}
 
//給 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);
}
 
//給 wp_list_categories() 生成的鏈接加上 rel="nofollow"
add_filter( ‘wp_list_categories’, ‘cis_nofollow_wp_list_categories’ );
function cis_nofollow_wp_list_categories( $text ) {
 
$text = stripslashes($text);
$text = preg_replace_callback(‘|<a (.+?)>|i’, ‘wp_rel_nofollow_callback’, $text);
return $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);
return $text;
}
 
//給 the_author_post_link 生成的鏈接加上 rel="nofollow"
add_filter(‘the_author_posts_link’, ‘cis_nofollow_the_author_posts_link’);
function cis_nofollow_the_author_posts_link ($link) {
return str_replace(‘</a><a href=’, ‘<a rel="nofollow" href=’,  $link);
}
 
//給 comments_popup_link_attributes() 生成的鏈接加上 rel="nofollow"
add_filter(‘comments_popup_link_attributes’, ‘cis_nofollow_comments_popup_link_attributes’);
function cis_nofollow_comments_popup_link_attributes () {
echo ‘ rel="nofollow"’;
}

上面的 filter 針對的都是主題開發(fā)時(shí)一些使用率比較高的函數(shù),基本上已經(jīng)能滿足我的要求了。

0 0

企業(yè)建站推薦正版商業(yè)主題,國內(nèi)專業(yè)團(tuán)隊(duì)開發(fā),完善售后,是您不二選擇。

正版主題商店

主題貓WP建站,累計(jì)幫助1300+客戶成功建站,為站長提供支持!

立刻開啟你的建站之旅
QQ在線客服

服務(wù)熱線

wordpress建站咨詢