批量替换WordPress文章中的文字 – WordPress 教程

2022年 10月 24日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

批量替换WordPress文章中的文字 – WordPress 教程
wordpress

如果你在博客的文章中经常加入一些关键词句,但后来准备将这些关键词句替换为其它的内容,手动替换工作量大、而且麻烦。下面的段代码可以非常方便地帮你替换掉这些关键词句。

将下面代码加到主题的functions.php文件中:

function replace_text_wps($text){      $replace = array(          // '关键词' => '替换的关键词'          'wordpress' => '<a href="#">wordpress</a>',          'excerpt' => '<a href="#">excerpt</a>',          'function' => '<a href="#">function</a>'      );      $text = str_replace(array_keys($replace), $replace, $text);      return $text;  }  add_filter('the_content', 'replace_text_wps');  add_filter('the_excerpt', 'replace_text_wps');  

放入保存即可替换

小咸鱼

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: