1、在WordPress主题 的 functions.php 文件中添加如下代码:
2、function replace_text_xintheme($text){
$replace = array(
//'关键词' => '将要替换的关键词'
'例子' => '案例',
'WordPress' => 'WordPress主题',
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}
add_filter('the_content', 'replace_text_xintheme');
add_filter('the_excerpt', 'replace_text_xintheme');
3、按照上面的方法就可以了,是不是很简单快速呢?