锚文本链接在网站优化中有很重要的作用,WoredPress可通过添加函数设置特定关键字自动添加链接。
function replace_text_wps($text){
$replace = array(
'海运的博客' => '<a href="https://www.haiyun.me.com/" rel="home">海运的博客</a>'
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}
add_filter('the_content', 'replace_text_wps');
标签:wordpress