免操作数据库,批量替换WordPress文章中文字方法

有时候文章中某些关键词需要批量替换,但是文章太多一篇一篇去修改就太麻烦了,虽然可以通过用数据库来批量替换,但是如果你只是临时修改,那么小羿教大家一个很简单的方法:

打开你主题的functions.php文件,然后添加下面的代码:

function replace_text_wps($text){  
    $replace = array(  
        // '关键词' => '替换的关键词'  
        'wordpress' => '<a href="#">wordpress</a>',  
        'excerpt' => '<a href="#">excerpt</a>',  
        'function' => '<a href="#">function</a>'  
    );  
    $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技巧,请关注「WordPress专题