Advertisement
Guest User

masonry-code

a guest
Dec 2nd, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. <div id="listing" class="">
  2.  
  3. <?php if ( have_posts() ) : ?>
  4.  
  5. <?php if ( is_home() && ! is_front_page() ) : ?>
  6. <header>
  7. <h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
  8. </header>
  9. <?php endif; ?>
  10.  
  11. <?php /* Start the Loop */ ?>
  12.  
  13. <?php while ( have_posts() ) : the_post(); ?>
  14.  
  15.  
  16. <article class="masonry-entry sliding-u-l-r-l" id="post-<?php the_ID(); ?>" <?php post_class(); ?> >
  17. <div class="masonry-inner">
  18. <?php if ( has_post_thumbnail() ) : ?>
  19. <div class="masonry-thumbnail">
  20. <a href="<?php the_permalink(' ') ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail($size);
  21.  
  22. ?></a>
  23. </div><!--.masonry-thumbnail-->
  24. <?php endif; ?>
  25. <div class="masonry-details">
  26.  
  27. <header class="entry-header">
  28.  
  29. <h2 class="entry-title"><a href="<?php the_permalink(); ?>" class="post-title-link"><?php
  30.  
  31. the_title(); ?></a></h2>
  32.  
  33.  
  34. </header>
  35.  
  36. <div class="masonry-post-excerpt">
  37. <?php echo the_excerpt();?>
  38. </div><!--.masonry-post-excerpt-->
  39.  
  40. </div><!--/.masonry-entry-details -->
  41. </div>
  42. </article><!--/.masonry-entry -->
  43.  
  44. <?php endwhile; ?>
  45. </div><!--/ #listing -->
  46. <?php the_posts_navigation(); ?>
  47.  
  48. <?php else : ?>
  49. <?php get_template_part( 'template-parts/content', 'none' ); ?>
  50. <?php endif; ?>
  51.  
  52. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement