Alıntı
bunu bir preg_replace fonksiyonuna yönlendirsen
Alıntı
doğrusu;
<?php
add_action('the_content', 'buldegistir');
function buldegistir(){
$content = preg_replace("(</b>)", "", $content);
return $content;
}
?>