array( 'label' => __( 'Small Preview', 'chromaticfw' ), 'width' => 315, 'height' => 230, 'crop' => true, 'show_in_editor' => false, ), // 393 x 180 (suitable for span4, calculated using logic of chromaticfw_get_image_size_name fn) 'chromaticfw-large-preview' => array( 'label' => __( 'Large Preview', 'chromaticfw' ), 'width' => 420, 'height' => 190, 'crop' => true, 'show_in_editor' => false, ), // 393 x 180 (comes after 'chromaticfw-large-preview', so that 'chromaticfw-large-preview' stays as default for span4. 'chromaticfw-medium-preview' is used for archive-medium post thumbnails) 'chromaticfw-medium-preview' => array( 'label' => __( 'Medium Preview', 'chromaticfw' ), 'width' => 420, 'height' => 550, 'crop' => false, 'show_in_editor' => false, ), // 740 x 340 (suitable for span8, calculated using logic of chromaticfw_get_image_size_name fn) 'chromaticfw-wide' => array( 'label' => __( 'Wide', 'chromaticfw' ), 'width' => 840, 'height' => 385, 'crop' => true, 'show_in_editor' => false, ), // 835 x 340 (suitable for span9, calculated using logic of chromaticfw_get_image_size_name fn) 'chromaticfw-extra-wide' => array( 'label' => __( 'Extra Wide', 'chromaticfw' ), 'width' => 945, 'height' => 385, 'crop' => true, 'show_in_editor' => false, ), ); return $sizes; }