有時候我們需要替換文章的某些文字為其它文字,比如給特定的文字加上鏈接,利用 SEO 和用戶體驗。
下邊的代碼即可實現(xiàn)這種功能:
function Bing_content_str_replace($text){ $replace_words = array( //添加要替換的文本,格式:'要替換的' => '替換到的內(nèi)容' '11px' => '<a href="http://www.11px.cn">電腦端</a>', 'm.11px' => '<a href="http://m.11px.cn">手機(jī)端</a>', 'functions.php' => '<a href="http://www.11px.cn/wordpress/">functions.php</a>' ); return str_replace( array_keys( $replace_words ), $replace_words, $text ); } add_filter( 'the_content', 'Bing_content_str_replace' ); add_filter( 'the_excerpt', 'Bing_content_str_replace' );
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: WordPress批量替換文章的某些文字