add_filter('the_content', function($content){
// Тут регулярки
return $content;
});if (have_posts()) : while (have_posts()) : the_post();
$content = get_the_content();
// Тут тоже регулярки))if (have_posts()) : while (have_posts()) : the_post();
ob_start();
the_content();
$content = ob_get_clean();
// Тут тоже регулярки))