/*
Theme Name: Ziston Child
Description: Child theme for the Ziston themes
Author: Gaviathemes
Template: ziston
*/


}

// Disable default WordPress image sizes
update_option( 'thumbnail_size_w', 0 );
update_option( 'thumbnail_size_h', 0 );
update_option( 'medium_size_w', 0 );
update_option( 'medium_size_h', 0 );
update_option( 'large_size_w', 0 );
update_option( 'large_size_h', 0 );

// Disable extra image sizes added in WordPress 5.3+
remove_image_size( 'medium_large' );
remove_image_size( '1536x1536' );
remove_image_size( '2048x2048' );

// Remove any additional image sizes added by themes or plugins
add_action('intermediate_image_sizes_advanced', 'remove_default_image_sizes');
function remove_default_image_sizes($sizes) {
    return [];
}