1

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

function replace_content($content){

   $wp_post = get_the_content();

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

   return $content;

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

任何帮助将不胜感激。

4

1 回答 1

2

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

于 2013-08-07T23:20:04.330 回答