Skip to content

Instantly share code, notes, and snippets.

@aderaaij
Last active November 12, 2017 15:35
Show Gist options
  • Save aderaaij/b8ad7b8173d82db5e526 to your computer and use it in GitHub Desktop.
Save aderaaij/b8ad7b8173d82db5e526 to your computer and use it in GitHub Desktop.
Post thumbnail support
<?php
if ( function_exists( 'add_theme_support' ) ) {
add_theme_support( 'post-thumbnails' );
set_post_thumbnail_size( 150, 150, true );
add_image_size( 'thumb-585_320', 585, 320, true);
add_image_size( 'thumb-1920_1080', 1920, 1080, true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment