WordPress教程替换文章的某些文字

有时候我们需要替换文章的某些文字为其它文字,比如给特定的文字加上链接,利用 SEO 和用户体验。

下边的代码即可实现这种功能:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

/**

*WordPress 替换文章的某些文字

*http://www.czgho.com/

*/

functionBing_content_str_replace($text){

$replace_words=array(

//添加要替换的文本,格式:'要替换的' => '替换到的内容'

''=>'<a href="http://www.czgho.com"></a>',

'帝国cms'=>'<a href="http://www.czgho.com">帝国cms</a>',

'functions.php'=>'<a href="http://www.czgho.com/wordpress/">functions.php</a>'

);

returnstr_replace(array_keys($replace_words),$replace_words,$text);

}

add_filter('the_content','Bing_content_str_replace');

add_filter('the_excerpt','Bing_content_str_replace');

本文收集于互联网,由 本站 整理编辑,不代表 本站 对观点赞同或支持。如果有侵权、不妥之处,请联系我们删除。敬请谅解!

© 版权声明
THE END
喜欢就支持一下吧
点赞43 分享