有時候我們需要替換文章的某些文字為其它文字,比如給特定的文字加上鏈接,利用 SEO 和用戶體驗。
下邊的代碼即可實現(xiàn)這種功能:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | /** *WordPress 替換文章的某些文字 *http://www.11px.cn/ */ function Bing_content_str_replace($text){ $replace_words = array( //添加要替換的文本,格式:'要替換的' => '替換到的內(nèi)容' '織夢無憂' => '<a href="http://www.11px.cn">織夢無憂</a>', '帝國cms' => '<a href="http://www.11px.cn">帝國cms</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教程替換文章的某些文字