Adjust image sizes and fix changelog typo

This commit is contained in:
Brian Miyaji
2014-05-19 22:51:21 +10:00
parent 17a011823a
commit 7f0c018236
2 changed files with 10 additions and 10 deletions

View File

@@ -117,7 +117,7 @@ SportsPress is currently in beta and is undergoing testing. We are still activel
Yes, CSV importers are included with the plugin. Go to Tools > Import and choose from one of the SportsPress CSV importers. When importing events, be sure to use the date format yyyy/mm/dd.
== Changelog ===
== Changelog ==
= 0.9.3 =
* Fix - Player list columns not displaying.

View File

@@ -283,21 +283,21 @@ final class SportsPress {
add_theme_support( 'post-thumbnails' );
// Standard (3:2)
add_image_size( 'sportspress-standard', 637, 425, true );
add_image_size( 'sportspress-standard-thumbnail', 303, 202, true );
add_image_size( 'sportspress-standard', 640, 480, true );
add_image_size( 'sportspress-standard-thumbnail', 320, 240, true );
// Wide (16:9)
add_image_size( 'sportspress-wide-header', 1600, 900, true );
add_image_size( 'sportspress-wide', 637, 358, true );
add_image_size( 'sportspress-wide-thumbnail', 303, 170, true );
add_image_size( 'sportspress-wide-header', 1920, 1080, true );
add_image_size( 'sportspress-wide', 640, 360, true );
add_image_size( 'sportspress-wide-thumbnail', 320, 180, true );
// Square (1:1)
add_image_size( 'sportspress-square', 637, 637, true );
add_image_size( 'sportspress-square-thumbnail', 303, 303, true );
add_image_size( 'sportspress-square', 640, 640, true );
add_image_size( 'sportspress-square-thumbnail', 320, 320, true );
// Fit (Proportional)
add_image_size( 'sportspress-fit', 637, 637, false );
add_image_size( 'sportspress-fit-thumbnail', 303, 303, false );
add_image_size( 'sportspress-fit', 640, 640, false );
add_image_size( 'sportspress-fit-thumbnail', 320, 320, false );
add_image_size( 'sportspress-fit-icon', 128, 128, false );
add_image_size( 'sportspress-fit-mini', 32, 32, false );
}