nofollow是什么? nofollow是A标签的属性值。 nofollow有什么作用? nofollow的用处是告诉搜索引擎不要追踪此网页上的链接或不要追踪…
nofollow是什么?
nofollow是A标签的属性值。
nofollow有什么作用?
nofollow的用处是告诉搜索引擎不要追踪此网页上的链接或不要追踪此特定链接,也就是不会导出权重到此链接。
nofollow对WordPress优化有着一定重要性。在文章内如果有外链地址,链接地址添加nofollw是很有必要的。
nofollow案例
<a href="https://www.ztjun.com/" rel="nofollow" >主题君</a>
使用方法
将以下代码添加到主题functions.php文件
add_filter('the_content', 'ztjun_auto_nofollow');
function ztjun_auto_nofollow($content) {
return preg_replace_callback('/<a>]+/', 'wpjam_auto_nofollow_callback', $content);
}
function wpjam_auto_nofollow_callback($matches) {
$link = $matches[0];
$site_link = get_bloginfo('url');
if (strpos($link, 'rel') === false) {
$link = preg_replace("%(href=S(?!$site_link))%i", 'rel="nofollow" $1', $link);
} elseif (preg_match("%href=S(?!$site_link)%i", $link)) {
$link = preg_replace('/rel=S(?!nofollow)S*/i', 'rel="nofollow"', $link);
}
return $link;
}