/ 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.
Expand |
Embed | Plain Text
/** * Enable post thumbnails. */ add_image_size( 'large-feature-image', 715, 402, true ); // large size, hard crop mode }
You need to login to post a comment.
