批量替换是网站运行中经常遇到的操作,例如前面我们介绍过的《织梦dedecms批量替换文章标题内容》、《织梦DEDECMS批量修改域名下所有文章内的图片路径》等等,都是需要进行批量操作,WordPress网站很多时候也是有这样的操作要求的,有时候我们需要替换文章的某些文字为其它文字,比如给特定的文字加上链接等,该如何实现呢?
下边361源码就给出相应的实现代码 即可实现这种功能:
/** *WordPress 替换文章的某些文字 *http://www.vevb.com/*/function Bing_content_str_replace($text){ $replace_words = array( //添加要替换的文本,格式:'要替换的' => '替换到的内容' 'adminbuy' => '<a href="http://www.vevb.com">vevb.com</a>', '魔客吧' => '<a href="http://www.vevb.com">361源码网</a>', 'functions.php' => '<a href="http://www.vevb.com/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' );
这样就可以了。
新闻热点
疑难解答
图片精选