Adjust image sizes and fix changelog typo
This commit is contained in:
@@ -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.
|
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 =
|
= 0.9.3 =
|
||||||
* Fix - Player list columns not displaying.
|
* Fix - Player list columns not displaying.
|
||||||
|
|||||||
@@ -283,21 +283,21 @@ final class SportsPress {
|
|||||||
add_theme_support( 'post-thumbnails' );
|
add_theme_support( 'post-thumbnails' );
|
||||||
|
|
||||||
// Standard (3:2)
|
// Standard (3:2)
|
||||||
add_image_size( 'sportspress-standard', 637, 425, true );
|
add_image_size( 'sportspress-standard', 640, 480, true );
|
||||||
add_image_size( 'sportspress-standard-thumbnail', 303, 202, true );
|
add_image_size( 'sportspress-standard-thumbnail', 320, 240, true );
|
||||||
|
|
||||||
// Wide (16:9)
|
// Wide (16:9)
|
||||||
add_image_size( 'sportspress-wide-header', 1600, 900, true );
|
add_image_size( 'sportspress-wide-header', 1920, 1080, true );
|
||||||
add_image_size( 'sportspress-wide', 637, 358, true );
|
add_image_size( 'sportspress-wide', 640, 360, true );
|
||||||
add_image_size( 'sportspress-wide-thumbnail', 303, 170, true );
|
add_image_size( 'sportspress-wide-thumbnail', 320, 180, true );
|
||||||
|
|
||||||
// Square (1:1)
|
// Square (1:1)
|
||||||
add_image_size( 'sportspress-square', 637, 637, true );
|
add_image_size( 'sportspress-square', 640, 640, true );
|
||||||
add_image_size( 'sportspress-square-thumbnail', 303, 303, true );
|
add_image_size( 'sportspress-square-thumbnail', 320, 320, true );
|
||||||
|
|
||||||
// Fit (Proportional)
|
// Fit (Proportional)
|
||||||
add_image_size( 'sportspress-fit', 637, 637, false );
|
add_image_size( 'sportspress-fit', 640, 640, false );
|
||||||
add_image_size( 'sportspress-fit-thumbnail', 303, 303, false );
|
add_image_size( 'sportspress-fit-thumbnail', 320, 320, false );
|
||||||
add_image_size( 'sportspress-fit-icon', 128, 128, false );
|
add_image_size( 'sportspress-fit-icon', 128, 128, false );
|
||||||
add_image_size( 'sportspress-fit-mini', 32, 32, false );
|
add_image_size( 'sportspress-fit-mini', 32, 32, false );
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user