有时候咱们需求替换文章的某些文字为其它文字,比方给特定的文字加上链接,使用 SEO 和用户体会。
下边的代码即可完成这种功用:
functionBing_content_str_replace($text){ $replace_words=array( //增加要替换的文本,格局:'要替换的'=>'替换到的内容' '11px'=>'<ahref="http://www.11px.cn">电脑端</a>', 'm.11px'=>'<ahref="http://m.11px.cn">手机端</a>', 'functions.php'=>'<ahref="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-15 07:43:23