Guest User

Untitled

a guest
Jun 22nd, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. <article id="post-<?php the_ID(); ?>" <?php post_class( array('list-article', 'clearfix') ); ?>>
  2.  
  3. <div class="list-article-thumb">
  4. <a href="<?php echo esc_url( get_permalink() ); ?>">
  5. <?php
  6. if ( has_post_thumbnail( ) ) {
  7. the_post_thumbnail( 'onepress-blog-small' );
  8. } else {
  9. echo '<img alt="" src="'. get_template_directory_uri() . '/assets/images/placholder2.png' .'">';
  10. }
  11. ?>
  12. </a>
  13. </div>
  14.  
  15. <div class="list-article-content">
  16. <div class="list-article-meta">
  17. <?php the_category(' / '); ?>
  18. </div>
  19. <header class="entry-header">
  20. <?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
  21. </header><!-- .entry-header -->
  22. <div class="entry-excerpt">
  23. <?php
  24. the_excerpt();
  25. ?>
  26. <?php
  27. wp_link_pages( array(
  28. 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'onepress' ),
  29. 'after' => '</div>',
  30. ) );
  31. ?>
  32. </div><!-- .entry-content -->
  33. </div>
  34.  
  35. <div class="list-article-content">
  36. </div>
Add Comment
Please, Sign In to add comment