1.

How to check a featured image exists or not in WordPress?

Answer»

We can USE has_post_thumbnail() METHOD to CHECK the FEATURED image is exists or not.

Example

if ( has_post_thumbnail() ) {
    the_post_thumbnail();
}



Discussion

No Comment Found