Maintenance mode is on
Site will be available soon. Thank you for your patience!
/** * 1) Remove Madara/theme custom sizes (after theme registers them) */ add_action('init', function() { $theme_sizes = [ 'manga-thumb-1', 'manga-single', 'manga_wg_post_1', 'manga_wg_post_2', 'manga-slider', '642x320', ]; foreach ($theme_sizes as $s) { remove_image_size($s); } }, 99); /** * 2) Image quality settings */ add_filter('wp_editor_set_quality', function($quality, $mime_type){ $mime_type = strtolower((string) $mime_type); if ($mime_type === 'image/jpg') $mime_type = 'image/jpeg'; if ($mime_type === 'image/x-png') $mime_type = 'image/png'; return match ($mime_type) { 'image/webp' => 85, 'image/png' => 70, 'image/jpeg' => 90, default => $quality, }; }, 10, 2); // Fallback for older WP versions or specific edge cases add_filter('jpeg_quality', fn($q) => 90, 10);
Site will be available soon. Thank you for your patience!