wordpress是很多个人站长和中小企业建站时喜欢使用的一款PHP建站程序,楚狂人的网站本身就是使用wp搭建的,最近因为发布很多空投糖果项目,会有很多外链输出,为了不影响网站的权重,所以想自动给某个分类下的文章自动添加nofollow属性,这个seo方法只适合与wordpress程序优化哦。在网上找了几个方法,觉得下面的方法最和我意,在此也分享给大家。
补充:
下面的两个方法我刚才试了一下,竟然不起作用,不知道是我用的不对,还是因为WP升级后失效了,但是我又发现了一款插件,可以给整站文章链接添加nofollow属性,大家可以试下看看,在后台安装插件,搜索:Nofollow for external link
一、wordpress为指定分类的所有链接添加nofollow属性。
那你可以将下面的代码添加到主题的 functions.php 文件即可。
代码如下:
function nofollow_cat_posts($text) {
global $post;
if( in_category(1) ) { // 修改这里的分类ID
$text = stripslashes(wp_rel_nofollow($text));
}
return $text;
}
add_filter('the_content', 'nofollow_cat_posts');
二、wordpress为全站文章添加nofollow属性。
直接安装启用 Nofollow for external link 插件,或者将下面的代码添加到当前主题的 functions.php 文件即可.
代码如下:
add_filter( 'the_content', 'cn_nf_url_parse');
function cn_nf_url_parse( $content ) {
$regexp = "<as[^>]*href=("??)([^" >]*?)\1[^>]*>";
if(preg_match_all("/$regexp/siU", $content, $matches, PREG_SET_ORDER)) {
if( !emptyempty($matches) ) {
$srcUrl = get_option('siteurl');
for ($i=0; $i < count($matches); $i++)
{
$tag = $matches[$i][0];
$tag2 = $matches[$i][0];
$url = $matches[$i][0];
$noFollow = '';
$pattern = '/targets*=s*"s*_blanks*"/';
preg_match($pattern, $tag2, $match, PREG_OFFSET_CAPTURE);
if( count($match) < 1 )
$noFollow .= ' target="_blank" ';
$pattern = '/rels*=s*"s*[n|d]ofollows*"/';
preg_match($pattern, $tag2, $match, PREG_OFFSET_CAPTURE);
if( count($match) < 1 )
$noFollow .= ' rel="nofollow" ';$pos = strpos($url,$srcUrl);
if ($pos === false) {
$tag = rtrim ($tag,'>');
$tag .= $noFollow.'>';
$content = str_replace($tag2,$tag,$content);
}
}
}
}
$content = str_replace(']]>', ']]>', $content);
return $content;
}
最终效果:
自动给文章/页面的站外链接添加nofollow属性(rel="nofollow”),并且在新窗口打开这些链接(即添加 target=”_blank”属性),如果已经手动给链接添加了 rel="nofollow”,就不会添加 rel="nofollow”,如果手动添加了 target=”_blank”,就不会重复添加。