[ad_1]
With just WP Job Manager activated, I’m seeing a 768×768 size image being generated in wp-content > uploads > job-manager-uploads > company_logo > 2022 > 08.
How can this image size generation be disabled? It isn’t the theme (GeneratePress, which doesn’t generate additional image sizes, and it isn’t my WordPress core thumbnail, medium, or large image sizes). Using this PHP code doesn’t bring it up, either (I should just need the name it is registered under to disable it with some other PHP code):
add_action( 'admin_init', 'theme_additional_images' );
// Display all image sizes other than the custom, default, thumbnail, medium and large
function theme_additional_images() {
global $_wp_additional_image_sizes;
$get_intermediate_image_sizes = get_intermediate_image_sizes();
echo '<pre>' . print_r($_wp_additional_image_sizes) . '</pre>';
}
