WordPress给文章内容中指定关键词添加链接

1
2
3
4
5
6
7
8
9
10
11
function replace_text_wps($text){
$replace = array(
'悟空搜' => '<a href="https://yijile.com/tag/wordpress/" rel="tag" >悟空搜</a>',
'WordPress主题' => '<a href="https://xiaohost.com/theme" rel="category tag" >WordPress主题</a>',
'WrodPress教程' => '<a href="https://xiaohost.com/wplearn" rel="nofollow" target="_blank" >WrodPress教程</a>'
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}

add_filter('the_content', 'replace_text_wps');

使用方法

将下面代码粘贴到自己使用的Wordpress主题的functions.php文件中。

原文链接:https://xiaohost.com/2477.html,转载请注明出处。
0

评论1

请先
  1. 我来看看把
    222 2021-05-10 0