themes-wordpress/canard/content-featured-post.php

26 lines
626 B
PHP
Raw Permalink Normal View History

2018-02-27 03:18:25 +00:00
<?php
/**
* The template for displaying featured posts on the front page
*
* @package Canard
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<a class="post-thumbnail" href="<?php the_permalink(); ?>">
<?php
// Output the featured image.
if ( has_post_thumbnail() ) {
the_post_thumbnail( 'canard-featured-content-thumbnail' );
}
?>
</a>
<header class="entry-header">
<?php
canard_entry_categories();
the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">','</a></h1>' );
?>
</header><!-- .entry-header -->
</article><!-- #post-## -->