批量替換或刪除 WordPress 文章內(nèi)容中的文字
將下面這段代碼添加到你當(dāng)前使用的 WordPress主題 的 functions.php 文件中:
function replace_text_xintheme($text){
$replace = array(
//'關(guān)鍵詞' => '將要替換的關(guān)鍵詞'
'資源下載' => '暫停下載',
'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');
新主題官方微信公眾號(hào)
掃碼關(guān)注新主題(XinTheme)官方公眾號(hào),本站動(dòng)態(tài)早知道。
發(fā)布本站最新動(dòng)態(tài)(新主題發(fā)布、主題更新)和WordPress相關(guān)技術(shù)文章。