The has_post_thumbnail() WordPress function Jeff MatsonUpdated on July 8, 2014 1 Minute Read Within your WordPress themes or plugins, you may need to determine if a post has a featured image attached to it. Using the has_post_thumbnail() function, you will be able to easily identify if a post has a featured image or not. In this article, we will show you how to use the has_post_thumbnail() WordPress function. Basic usage <?php has_post_thumbnail( $post_id ); ?> Optional parameters $post_id: You may optionally define the ID of the post that you are checking for a featured image on. If left undefined, it defaults to the current post being processed. Example <?php if ( has_post_thumbnail() ) { // Do something } else { // Do something else } ?> In this example, we call the has_post_thumbnail() function within a PHP if statement that will allow us to perform an action if there is a featured image, and another if there is not one. Resources For more information on the has_post_thumbnail() function, you may review the has_post_thumbnail() WordPress Codex page. Share this Article Related Articles How to Add Another Website to a WordPress Hosting Account 10 Ways to Secure WordPress How to Fix cURL Error 60 in WordPress: SSL Certificate Problem Intro to Migrating your WordPress Site Data Migrating your WordPress Database Configuring WordPress After a Migration How to Create and Edit Pages and Posts in WordPress What is the Difference Between Pages and Posts in WordPress How to Add Videos to WordPress How to Create and Add a Logo To WordPress