Two other image sizes in WP


/ Published in: PHP
Save to your folder(s)

By putting the following code in your theme’s functions.php file, you create two extra sizes:


Copy this code and paste it in your HTML
  1. add_image_size( 'large_thumb', 75, 75, true );
  2. add_image_size( 'wider_image', 200, 150 );

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.