content-featured.php 654 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * The template for displaying featured posts on the front page
  4. *
  5. * @package Ixion
  6. */
  7. ?>
  8. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  9. <a class="post-link" href="<?php the_permalink(); ?>"><span class="screen-reader-text"><?php the_title(); ?></span></a>
  10. <?php if ( has_post_thumbnail() ) { ?>
  11. <div class="post-thumbnail">
  12. <?php the_post_thumbnail( 'ixion-featured-content' ); ?>
  13. </div>
  14. <?php } ?>
  15. <header class="entry-header">
  16. <?php the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">','</a></h1>' ); ?>
  17. </header><!-- .entry-header -->
  18. </article><!-- #post-## -->