content-featured-post.php 662 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * The template for displaying featured posts on the front page
  4. */
  5. ?>
  6. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  7. <a class="post-thumbnail" href="<?php the_permalink(); ?>">
  8. <?php
  9. // Output the featured image.
  10. if ( has_post_thumbnail() ) {
  11. the_post_thumbnail( 'gazette-featured-content-thumbnail' );
  12. }
  13. ?>
  14. </a>
  15. <header class="entry-header">
  16. <div class="entry-meta">
  17. <?php gazette_entry_meta(); ?>
  18. </div><!-- .entry-meta -->
  19. <?php the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">','</a></h1>' ); ?>
  20. </header><!-- .entry-header -->
  21. </article><!-- #post-## -->