Advertisement
afsarwebdev

WP Thumbnail Image Cropping

Oct 1st, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. /***** to add thumbnail in wordpress write the following code in functions.php *****/
  2.  
  3. // this code is for thumbnail support in theme
  4. add_theme_support('post-thumbnails');
  5.  
  6. // this code is for image sizes
  7. add_image_size('large-project', 220, 270, true);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement