有时候咱们需求替换文章的某些文字为其它文字,比方给特定的文字加上链接,使用 SEO 和用户体会。
下边的代码即可完成这种功用:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | /** *WordPress 替换文章的某些文字 *http://www.11px.cn/ */ functionBing_content_str_replace($text){ $replace_words=array( //增加要替换的文本,格局:'要替换的' => '替换到的内容' '织梦无忧'=>'<a href="http://www.11px.cn">织梦无忧</a>', '帝国cms'=>'<a href="http://www.11px.cn">帝国cms</a>', 'functions.php'=>'<a href="http://www.11px.cn/wordpress/">functions.php</a>' ); returnstr_replace(array_keys($replace_words),$replace_words,$text); } add_filter('the_content','Bing_content_str_replace'); add_filter('the_excerpt','Bing_content_str_replace'); |
声明:有的资源均来自网络转载,版权归原作者所有,如有侵犯到您的权益 请联系邮箱:123456@qq.com 我们将配合处理!
原文地址:WordPress教程替换文章的某些文字发布于2022-05-14 07:43:29