• I want to show featured image inside my page of post BUT ONLY when post content is null.

    I have the code below to show featured image inside my post.

    <?php
    if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
      the_post_thumbnail();
    }
    ?>

    and i try to edit like this but not working

    <?php
    if ( (has_post_thumbnail()) || (the_content() == '') ) { // check if the post has a Post Thumbnail assigned to it.
      the_post_thumbnail();
    }
    ?>

Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Show featured image inside post ONLY when post content is null’ is closed to new replies.