get('Version') ); } add_action( 'wp_enqueue_scripts', 'yuzu_styles'); // Modifier le seuil à 3200px: add_filter( 'big_image_size_threshold', 'modify_big_image_size_threshold', 10, 4 ); function modify_big_image_size_threshold( $threshold, $imagesize, $file, $attachment_id ) { return 4096; } // Désactiver complètement le seuil maximum: //add_filter( 'big_image_size_threshold', '__return_false' ); // Infos sur les tailles d’images actives: //add_action( 'admin_init', 'theme_additional_images' ); function theme_additional_images() { global $_wp_additional_image_sizes; echo '
' . print_r($_wp_additional_image_sizes) . ''; } ?>