欢迎访问服务器技术网-www.fuwuqijishu.com

如何快速给WordPress指定关键字添加链接(插件和代码方法)

网站建设 fuwuqijishu 2年前 (2022-09-04) 50次浏览 0个评论 扫描二维码

今天有个网友希望帮他把WordPress站点中指定的关键字设置链接。这里有2个办法可以解决,其中一个是我们的WPreplace插件,一个是代码办法。对于插件办法我们可以参考替换插件WPReplace,这个可以参考文章(WordPress内容字符快速替换插件WPReplace)。

代码部分我们可以参考:

function replace_text_wps($text){
$replace = array(
'关键字A' => '<a href="链接A" rel="tag" >关键字A</a>',
'关键字B' => '<a href="链接B" >关键字B</a>',
'部落' => '<a href="https://www.itbulu.com/" rel="nofollow" target="_blank" >部落</a>'
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}

add_filter('the_content', 'replace_text_wps');

类似的代码我们替换和添加即可。添加到 Functions.php文件中。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2515.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900