As with sidebars and navigation menus, we can’t just output featured images in our theme and expect them to work, we must first tell WordPress that we support the feature. In functions.php add:
add_theme_support( ‘post-thumbnails’ );
Now we can add_post_thumbnail(); in our loop and the thumbnails will work. The problem is that they will be output in WordPress’ large size of 1920px x 2560px, which is too large for most purposes. Luckily WordPress has another helper function: add_image_size();
When a user uploads an image, if an image size is defined, WordPress will generate a version of the uploaded image at that size (while keeping the original image). If the user’s image is smaller than the size you set, WordPress will not do anything because it can’t make the image larger than the original.
To use the optimized feature image instead of the original image, place the following code in functions.php:
add_image_size( ‘my-custom-image-size’, 640, 999 );
The first and second parameters are the image width and the third is the height. Both height and width are optional if you only want to restrict one dimension.
Call the tag in index.php:
the_post_thumbnail( ‘my-custom-image-size’ );
Search
Popular on Blogar
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1489 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1775 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1323 Views
Social Media Marketing – 53 Resources For First Time Entrepreneurs
- October 24th, 2023
- 855 Views
Email Marketing-Advantages and disadvantages of email marketing
- October 24th, 2023
- 805 Views
Search Engine Optimization-Tell Google which pages you don’t want crawled
- October 24th, 2023
- 791 Views
Social Media Marketing – What is Pinterest?
- October 24th, 2023
- 769 Views
Email Marketing-Revenue Generation Email Marketing Campaigns
- October 24th, 2023
- 764 Views
Search Engine Optimization-Let Google see your page the same way a user does
- October 24th, 2023
- 758 Views
Search Engine Optimization-How to Leverage Link Blending and Stage 2 Link Building to Maximize Your Rankings
- October 24th, 2023
- 752 Views
Recent Post
Content Marketing-What is Content Marketing
- October 24th, 2023
- 1489 Views
Social Media Marketing-Social Media Marketing (SMM)
- October 24th, 2023
- 1775 Views
Pay-Per-Click-What is PPC
- October 24th, 2023
- 1323 Views
VMware cannot install VMware Tools, prompts VMCI, memory driver
- November 25th, 2024
- 114 Views
More Post
- Howo Tractor Truck
- Howo Tipper/Dump Truck
- Howo Cargo Truck
- Howo Concrete Mixer Truck
- Howo Special Truck
- Howo Light Truck
- Shacman Tractor Truck
- Shacman Tipper/Dump Truck
- Shacman Cargo Truck
- Shacman Concrete Mixer Truck
- LGMG Mining Trucks
- XCMG Wheel Loader
- XCMG Excavator
- XCMG Crane
- XCMG Asphalt Pavers
- XCMG Road Roller
- Shantui Bulldozer
Copyright © 2024 BBBBF All Rights Reserved.