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