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

- 原文链接：https://www.xintheme.com/wpjiaocheng/44818.html
- 发布日期：2019-05-30
- 更新时间：2026-08-22
- 作者：大胡子 | XinTheme
- 分类目录：WordPress教程
- 标签：WordPress、WordPress批量替换关键词

## 摘要

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

## 正文

 批量替换或删除 [WordPress](https://www.xintheme.com) 文章内容中的文字

 将下面这段代码添加到你当前使用的 [WordPress主题](https://www.xintheme.com) 的 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');
```