wordpress网站文章添加超链接如何避免权重流失?
程序员文章站
2022-06-25 11:30:56
将以下代码添加到当前使用主题的functions.php文件中即可。代码预览// 文章页面外链自动添加nofollow属性和新窗口打开add_filter( 'the_content', 'cn_nf_url_parse');function cn_nf_url_parse( $content ) {$regexp = "]*href=(\"??)([^\" >]*?)\\1[^>]*>";if(preg_match_all("/$regexp...
将以下代码添加到当前使用主题的functions.php文件中即可。
代码预览
// 文章页面外链自动添加nofollow属性和新窗口打开
add_filter( 'the_content', 'cn_nf_url_parse');
function cn_nf_url_parse( $content ) {
$regexp = "<a\s[^>]*href=(\"??)([^\" >]*?)\\1[^>]*>";
if(preg_match_all("/$regexp/siU", $content, $matches, PREG_SET_ORDER)) {
if( !empty($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 = '/target\s*=\s*"\s*_blank\s*"/';
preg_match($pattern, $tag2, $match, PREG_OFFSET_CAPTURE);
if( count($match) < 1 )
$noFollow .= ' target="_blank" ';
$pattern = '/rel\s*=\s*"\s*[n|d]ofollow\s*"/';
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”),如果手动添加了这两个属性则不自动添加。
如果不给这些外链添加nofollow标签,可能会造成我们自己站点的权重流失。如果这些外链不是通过_blank方式打开,可能会给访客造成不好的体验。
本文地址:https://blog.csdn.net/weixin_43837883/article/details/109564679
上一篇: 浅拷贝和深拷贝的区别(详解)
下一篇: 关于Python函数参数的进阶用法