中文字幕在线观看,亚洲а∨天堂久久精品9966,亚洲成a人片在线观看你懂的,亚洲av成人片无码网站,亚洲国产精品无码久久久五月天

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

2019-03-15    來源:bolo的博客,blog.imbolo.com/wordpress-seo-tips

容器云強勢上線!快速搭建集群,上萬Linux鏡像隨意使用

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

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

//給標簽云里的鏈接加上 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ù),基本上已經(jīng)能滿足我的要求了。

(來源:bolo的博客

標簽: WordPress SEO技巧 頁面排名 

版權申明:本站文章部分自網(wǎng)絡,如有侵權,請聯(lián)系:west999com@outlook.com
特別注意:本站所有轉載文章言論不代表本站觀點!
本站所提供的圖片等素材,版權歸原作者所有,如需使用,請與原作者聯(lián)系。

上一篇:一個ICO小圖標,百度給你全新體驗

下一篇:問答平臺推廣乃網(wǎng)站SEO一大利器