值得一看

批量删除或替换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');

温馨提示:本文最后更新于2023-09-04 21:31:21,某些文章具有时效性,若有错误或已失效,请私信客服或联系知新社长
© 版权声明
九月 4

知岛上的今时往日

    "吼吼~,往年的今天,作者不知道跑哪里偷懒去了~"
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

夸夸Ta
夸夸
还有吗!没看够!
取消
昵称表情代码图片

    暂无评论内容

社区求救信号帮助是一种美德