I’ve got a highlight section on the header of my website which shows the title and the thumbnail of the last X posts having a thumbnail.
Is there any custom query which allows me to retrieve only the last X post having a thumbnail?
At the moment I’m retrieving the last X * 10 posts (because not all the posts have a thumbnail) hoping that in this result I’ll have X posts having a thumbnail. After doing my query I add a condition: if (has_post_thumbnail()).
This solution is really uncertain and ugly, a custom query with a thumbnail parameter would be great but I couldn’t find any hint about it.
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
try to work this into your query: 'meta_key' => '_thumbnail_id'
http://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0