Guest User

Untitled

a guest
Jan 22nd, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. if ( function_exists( 'add_theme_support' ) ) {
  4. // Add support for post thumbnails
  5. add_theme_support( 'post-thumbnails' );
  6. // Change thumbnail size to 270 x 270 with cropping
  7. set_post_thumbnail_size( 270, 270, true );
  8. // Create a custom image size of 270 x 270 with cropping
  9. add_image_size('wpf-thumb', 270, 270, true);
  10. }
Add Comment
Please, Sign In to add comment