Guest User

Untitled

a guest
Oct 22nd, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  2.  
  3. <?php if ( has_post_thumbnail() ) : ?>
  4. // check if the post has a Post Thumbnail assigned to it.
  5. <a href="<?php the_content(); ?>"><?php the_post_thumbnail( 'hero-post-thumbnail' ); ?></a>
  6.  
  7. <?php else: the_content(); ?>
  8.  
  9. <?php endif ?>
  10. <?php endwhile; // end of the loop. ?>
Add Comment
Please, Sign In to add comment