25 lines
537 B
PHP
25 lines
537 B
PHP
<?php
|
|
/**
|
|
* Post featured image template part.
|
|
*
|
|
* @package AMP
|
|
*/
|
|
|
|
$featured_image = $this->get( 'featured_image' );
|
|
|
|
if ( empty( $featured_image ) ) {
|
|
return;
|
|
}
|
|
|
|
$amp_html = $featured_image['amp_html'];
|
|
$caption = $featured_image['caption'];
|
|
?>
|
|
<figure class="amp-wp-article-featured-image wp-caption">
|
|
<?php echo $amp_html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
|
|
<?php if ( $caption ) : ?>
|
|
<p class="wp-caption-text">
|
|
<?php echo wp_kses_data( $caption ); ?>
|
|
</p>
|
|
<?php endif; ?>
|
|
</figure>
|