批量替換或刪除 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');
新主題官方微信公眾號
掃碼關注新主題(XinTheme)官方公眾號,本站動態早知道。
發布本站最新動態(新主題發布、主題更新)和WordPress相關技術文章。