HEX
Server: Apache
System: Linux p3plzcpnl504740.prod.phx3.secureserver.net 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
User: l2pbkn5l6xav (4972877)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: /home/l2pbkn5l6xav/www/wp-content/themes/primer/templates/parts/loop/post-thumbnail.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;