下载帮

您现在的位置是:首页 > CMS教程 > WordPress

WordPress

wordpress自动替换文章内容content中的字符

2020-12-09 18:24WordPress

比如你的博客名称换了,或将文章图片地址替换成CDN里的域名。你希望老的文章里同样可以更换一些文案。使用以下代码可以轻松搞定,加入到主题文件夹下functions.php 文件即可。


//content内容替换

function replace_text_wps($text){

 $replace = array(

 // 'WORD TO REPLACE' => 'REPLACE WORD WITH THIS'

 'https://www.xzb.cc/wp-content/uploads/' => 'https://pic.xzb.cc/'

 );

 $text = str_replace(array_keys($replace), $replace, $text);

 return $text;

}

add_filter('the_content', 'replace_text_wps');

//content内容替换 end


文章评论