有些时候我们需要批量的将网站某个关键字设置外部链接,如果一个个找那太麻烦。我们是否可以用到批量的设置,自动检索到内容中有关键字,然后去添加链接。
function replace_text_wps($text){
$replace = array(
'悟空搜' => '<a href="https://www.laozuo.org/tag/wordpress/" rel="tag" >悟空搜</a>',
'WordPress主题' => '<a href="https://www.laozuo.org/theme" rel="category tag" >WordPress主题</a>',
'WrodPress教程' => '<a href="https://www.laozuo.org/wplearn" rel="nofollow" target="_blank" >WrodPress教程</a>'
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}
add_filter('the_content', 'replace_text_wps');
我们可以根据这些格式,设置需要的内容中有指定文字的加上链接。