50 lines
752 B
PHP
50 lines
752 B
PHP
<?php
|
|
/**
|
|
* Template part for displaying the post thumbnail inside The Loop.
|
|
*
|
|
* @package Primer
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
if ( has_post_thumbnail() ) :
|
|
|
|
?>
|
|
<div class="featured-image">
|
|
|
|
<?php
|
|
|
|
/**
|
|
* Fires before the post thumbnail element.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
do_action( 'primer_before_post_thumbnail' );
|
|
|
|
?>
|
|
|
|
<?php if ( ! is_single() ) : ?>
|
|
|
|
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( primer_get_featured_image_size() ); ?></a>
|
|
|
|
<?php else : ?>
|
|
|
|
<?php the_post_thumbnail( primer_get_featured_image_size() ); ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php
|
|
|
|
/**
|
|
* Fires after the post thumbnail element.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
do_action( 'primer_after_post_thumbnail' );
|
|
|
|
?>
|
|
|
|
</div><!-- .featured-image -->
|
|
<?php
|
|
|
|
endif;
|