/ Published in: PHP
This snippet adds support for post thumbnails (a.k.a. 'featured images') to a Wordpress theme. It also adds an additional image size for image thumbnails, hard cropped. This second step is optional.
Add this snippet to your WP theme's functions.php file.
Add this snippet to your WP theme's functions.php file.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/** * Enable post thumbnails. */ add_image_size( 'large-feature-image', 715, 402, true ); // large size, hard crop mode }