content.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. /**
  3. * Template part for displaying posts.
  4. *
  5. * @package Button 2
  6. */
  7. ?>
  8. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9. <header class="entry-header">
  10. <?php if ( button_2_has_post_thumbnail() ) : ?>
  11. <div class="featured-image">
  12. <span class="corners">
  13. <?php the_post_thumbnail( 'button-2-featured' ); ?>
  14. </span>
  15. <a class="shadow" href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><span class="screen-reader-text"><?php the_title(); ?></span></a>
  16. </div>
  17. <?php endif; ?>
  18. <?php if ( 'post' == get_post_type() ) : ?>
  19. <?php button_2_entry_cats(); ?>
  20. <?php endif; ?>
  21. <?php the_title( sprintf( '<h1 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h1>' ); ?>
  22. <?php if ( 'post' == get_post_type() ) : ?>
  23. <div class="entry-meta">
  24. <?php button_2_posted_on(); ?>
  25. </div>
  26. <?php endif; ?>
  27. </header><!-- .entry-header -->
  28. <div class="entry-content">
  29. <?php the_content( sprintf(
  30. /* translators: %s: Name of current post. */
  31. wp_kses( __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'button-2' ), array( 'span' => array( 'class' => array() ) ) ),
  32. the_title( '<span class="screen-reader-text">"', '"</span>', false )
  33. ) ); ?>
  34. <?php
  35. wp_link_pages( array(
  36. 'before' => '<div class="page-links">',
  37. 'after' => '</div>',
  38. 'link_before' => '<span class="active-link">',
  39. 'link_after' => '</span>'
  40. ) );
  41. ?>
  42. </div><!-- .entry-content -->
  43. <?php if ( function_exists( 'button_2_post_flair' ) ) : ?>
  44. <div class="entry-flair">
  45. <?php button_2_post_flair(); ?>
  46. </div><!-- .entry-flair -->
  47. <?php endif; ?>
  48. <footer class="entry-footer">
  49. <?php button_2_entry_footer(); ?>
  50. </footer><!-- .entry-footer -->
  51. </article><!-- #post-## -->