Advertisement
Guest User

Untitled

a guest
May 18th, 2011
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. // post thumbnail support
  2. if ( function_exists( 'add_image_size' ) ) add_theme_support( 'post-thumbnails' );
  3. if ( function_exists( 'add_image_size' ) ) {
  4. add_image_size( 'post-thumb', 700, 270 );
  5. add_image_size( 'home-thumb', 230, 220, true );
  6. add_image_size( 'recent-thumb', 70, 70, true );
  7. add_image_size( 'archive-thumb', 100, 100, true );
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement