WordPress批量替换文章中文字教程
我们经常会遇到想要将文章中的一些关键词替换成其他内容,手动替换工作量还是比较大的,并且很麻烦,今天为大家分享wordpress批量替换文章中文字教程,下面的段代码可以非常方便地帮你替换掉这些关键词句。
将下面代码加到WordPress主题的functions.php文件中:
function replace_text_wps($text){
$replace = array(
// '关键词' => '替换的关键词'
'wordpress' => 'wordpress',
'excerpt' => 'excerpt',
'function' => 'function'
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}
add_filter('the_content', 'replace_text_wps');
add_filter('the_excerpt', 'replace_text_wps');
以上就是WordPress批量替换文章中文字教程,希望能帮助到大家。