共计 684 个字符,预计需要花费 2 分钟才能阅读完成。
如题所述,以下代码就可以帮助大概解决这个问题,找到你主题目录下的”functions.php”文件,添加以下代码上传覆盖即可。
/*-----------------------------------------------------------------------------------*/
/* WordPress 文章内外链添加 go 跳转
/*-----------------------------------------------------------------------------------*/
function loper_content_nofollow($content){preg_match_all('//',$content,$matches);
if($matches){foreach($matches[2] as $val){if(strpos($val,'://')!==false && strpos($val,home_url())===false && !preg_match('/\.(jpg|jepg|png|ico|bmp|gif|tiff)/i',$val)){$content=str_replace("href=\"$val\"","href=\"".get_stylesheet_directory_uri()."/go.php?url=$val\" ",$content);
}
}
}
return $content;
}
add_filter('the_content','loper_content_nofollow',999);
正文完