Advertisement
ten80snowboarder

WordPress Featured Image Support and New Image Sizes

Apr 8th, 2012
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. /* FEATURED IMAGE SUPPORT */
  2. if ( function_exists( 'add_theme_support' ) ) {
  3.     add_theme_support( 'post-thumbnails' );
  4. }
  5. /* ADD NEW IMAGE SIZES */
  6. if ( function_exists( 'add_image_size' ) ) {
  7.     add_image_size( 'new-image-name', 640, 480, true ); // (cropped)
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement