Stop creating unused image sizes
add_action( 'after_setup_theme', 'remove_featured_images_from_child_theme', 11 );
function remove_featured_images_from_child_theme() {
remove_theme_support( 'medium_large');
remove_theme_support( 'blog-portfolio' );
remove_theme_support( 'blog-single' );
}
But this ist not working. Is there another way to do this?
Best, Chris

Comments