我正在开发一个用于查找和替换单词的插件。到目前为止,我有这段代码,但它似乎不起作用。
function replace_content($content){
$wp_post = get_the_content();
$content = str_replace('lorem',' ronny',$wp_post);
return $content;
}
add_filter('the_content','replace_content');
任何帮助将不胜感激。