默认情况下,wp文章中的链接没有target=”_blank “属性。点击外链会跳开,体验不是很好。修改方法如下:
将以下代码添加到当前主题的functions.php文件中。
/functions.php文件路径:/WP-content/themes/themes/functions . PHP。
自动将nofollow属性(rel=”nofollow “)添加到文章/页面的出站链接中,并在新窗口中打开这些链接(即添加target =” _ blank “属性)。如果rel =“do follow”已被手动添加到链接,则rel =“no follow”;”不会被添加;如果手动添加target = “_ blank “,则不会再次添加。
// 站外链接自动添加nofollow属性
add_filter( 'the_content', 'url_autoblank');
function url_autoblank( $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;
}