WordPress批量替換文章中文字教程
我們經(jīng)常會(huì)遇到想要將文章中的一些關(guān)鍵詞替換成其他內(nèi)容,手動(dòng)替換工作量還是比較大的,并且很麻煩,今天為大家分享wordpress批量替換文章中文字教程,下面的段代碼可以非常方便地幫你替換掉這些關(guān)鍵詞句。
將下面代碼加到WordPress主題的functions.php文件中:
function replace_text_wps($text){
$replace = array(
// '關(guān)鍵詞' => '替換的關(guān)鍵詞'
'wordpress' => 'wordpress',
'excerpt' => 'excerpt',
'function' => 'function'
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}
add_filter('the_content', 'replace_text_wps');
add_filter('the_excerpt', 'replace_text_wps');
以上就是WordPress批量替換文章中文字教程,希望能幫助到大家。