如何在wordpress中查找和替换单词

时间:2013-08-07 22:48:19

标签: php wordpress

我正在开发一个用于查找和替换单词的插件。到目前为止,我有这个代码,似乎没有用。

function replace_content($content){

   $wp_post = get_the_content();

   $content = str_replace('lorem',' ronny',$wp_post);

   return $content;

}
add_filter('the_content','replace_content');

任何帮助都将受到高度赞赏。

1 个答案:

答案 0 :(得分:2)

找到解决方案。内容是大写字母,因此我使用str_ireplace()而不是str_replace()函数来忽略大小写。