Skip to content

Instantly share code, notes, and snippets.

@rugor
Last active January 19, 2016 21:30
Show Gist options
  • Save rugor/5417949 to your computer and use it in GitHub Desktop.
Save rugor/5417949 to your computer and use it in GitHub Desktop.
PHP: Wordpress functions.php enable post thumbnails #rugor #st
// Enable thumbnails in Wordpress 3.0
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 220, 220, true ); // slideshow size 220 pixels wide by 220 pixels tall, hard crop mode
add_image_size( 'thumbnail-tall', 220, 450 ); // TALL THUMBNAIL
add_image_size( 'thumbnail-wide', 450, 220 ); // WIDE THUMBNAIL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment