PDF rausgenommen
This commit is contained in:
@ -0,0 +1,24 @@
|
||||
<?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>
|
Reference in New Issue
Block a user