wp-productzilla/wp-content/themes/blocksy/inc/integrations/dfi.php
rizal.productzilla e38e8b231d templating
2024-04-01 16:08:46 +07:00

12 lines
221 B
PHP

<?php
// https://wordpress.org/plugins/default-featured-image/
add_action('wp', function () {
if (! class_exists('DFI')) {
return;
}
remove_filter('post_thumbnail_html', [DFI::instance(), 'show_dfi'], 20, 5);
});