我需要替换帖子中的单词,并在删除函数中的代码后保存新单词
我使用此代码替换
<?php
function replace_text_wps($text){
$replace = array(
// ‘WORD TO REPLACE’ => ‘REPLACE WORD WITH THIS’
\'wp\' => \'<img href="#"><a href="#">wordpress</a>\',
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}
add_filter(\'the_content\', \'replace_text_wps\');
add_filter(\'acf/load_value/name=artist\', \'replace_text_wps\');
?>
此代码正常并替换了我的单词,但如果在我的函数中删除此代码,则不会保存新单词
我想一次替换所有单词并保存和删除代码
这是怎么回事?
对不起,我英语说得不好