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

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

将下面这段代码添加到你当前使用的 WordPress主题 的 functions.php 文件中:

function replace_text_urstudio($text){
    $replace = array(
        //'关键词' => '将要替换的关键词''资源下载'	=> '暂停下载',
		'WordPress' => 'WordPress主题',
    );
    $text = str_replace(array_keys($replace), $replace, $text);
    return $text;
}
add_filter('the_content', 'replace_text_urstudio');
add_filter('the_excerpt', 'replace_text_urstudio');

 

给TA打赏
共{{data.count}}人
人已打赏
WordPressWordPress插件

HashBar Pro-WordPress通知栏插件

2019-12-16 15:32:43

WordPress开发教程

WordPress 导航菜单给a标签添加class和data属性

2019-12-12 14:04:52

个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索