为wordpress日志关键词添加链接,增加内链和外链,有利于SEO,实现上述功能一般我们会通过安装插件来实现,比如:WP Keyword Link和SEO Smart Link等。
利用《批量替换WordPress文章中的文字》一文的方法,不用插件也可以实现自动为关键词添加内链和外链。
将下面代码粘贴到主题functions.php文件中:
function replace_text_wps($text){$replace = array( '站长网' => '<a href="https://xingkongweb.com/" rel="bookmark" title="站长网">站长网</a>','服务器文档网' => '<a href="https://xingkongweb.com/" rel="bookmark" title="服务器文档网">服务器文档网</a>','关键词' => '<a href="https://xingkongweb.com/" rel="bookmark" title="说明">关键词</a>'); $text = str_replace(array_keys($replace), $replace, $text);return $text;} add_filter('the_content', 'replace_text_wps');
通过以上方法,可以实现文章中自动添加指定锚文本