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


How do I find and replace words in 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');

如有任何帮助,我们将不胜感激。

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