add_action(‘template_redirect’, function () {
ob_start(function ($html) {
// Remove ANY tag that wraps .post-thumbnail (most reliable method)
$html = preg_replace(
‘/]*>s*(
]*>.*?
)s*/is’,
‘$1’,
$html
);
return $html;
});
});