content.php 850 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Template part for displaying posts
  4. *
  5. * @link https://codex.wordpress.org/Template_Hierarchy
  6. *
  7. * @package Radcliffe 2
  8. */
  9. ?>
  10. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  11. <?php if ( radcliffe_2_has_post_thumbnail() ) : ?>
  12. <div class="entry-thumbnail" <?php radcliffe_2_background_image(); ?>></div>
  13. <?php endif; ?>
  14. <header class="entry-header">
  15. <?php
  16. if ( 'post' === get_post_type() ) : ?>
  17. <div class="entry-meta">
  18. <?php radcliffe_2_posted_on(); ?>
  19. </div><!-- .entry-meta -->
  20. <?php
  21. endif; ?>
  22. <?php
  23. if ( is_singular() ) :
  24. the_title( '<h1 class="entry-title">', '</h1>' );
  25. else :
  26. the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
  27. endif; ?>
  28. </header><!-- .entry-header -->
  29. </article><!-- #post-<?php the_ID(); ?> -->