有时候文章中某些关键词需要批量,但是文章太多一篇一篇去修改就太麻烦了,虽然可以通过用来批量,但是如果你只是临时修改,那么小羿教大家一个很简单的方法:
打开你主题的functions.php文件,然后添加下面的代码:
function replace_text_wps($text){
$replace = array(
// '关键词' => '的关键词'
'wordpress' => '',
'excerpt' => '',
'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');
通过这种方法不会影响到,还可以批量关键词的链接地址哦!
# 更多技巧,请关注「专题」