Add image sizes

This commit is contained in:
Brian Miyaji
2014-01-12 02:49:50 +11:00
parent fd015f926b
commit 3fd8208902
4 changed files with 34 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ function sportspress_manage_posts_custom_column( $column, $post_id ) {
global $post;
switch ( $column ):
case 'sp_logo':
edit_post_link( get_the_post_thumbnail( $post_id, 'sp_icon' ), '', '', $post_id );
edit_post_link( get_the_post_thumbnail( $post_id, 'sportspress-icon' ), '', '', $post_id );
break;
case 'sp_position':
echo get_the_terms ( $post_id, 'sp_position' ) ? the_terms( $post_id, 'sp_position' ) : '—';