Guest User

Untitled

a guest
Oct 22nd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 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.  
  11. <?php endwhile; endif; // end of the loop. ?>
Add Comment
Please, Sign In to add comment