批量删除或替换WordPress文章内容中的文字

批量替换或删除WordPress文章内容中的文字
将下面这段代码添加到你当前使用的WordPress主题的functions.php文件中:

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');

 

posted @ 2021-03-30 10:15  qiqiddd  阅读(248)  评论(0)    收藏  举报