Merge remote-tracking branch 'origin/add-featured-image-content-options' into add-featured-image-content-options

This commit is contained in:
Thomas Guillot 2017-08-03 12:44:05 +01:00
commit 92bcf64ba4
1 changed files with 33 additions and 0 deletions

View File

@ -133,3 +133,36 @@ function _s_post_thumbnail() {
<?php endif; // End is_singular().
}
endif;
if ( ! function_exists( '_s_post_thumbnail' ) ) :
/**
* Displays an optional post thumbnail.
*
* Wraps the post thumbnail in an anchor element on index views, or a div
* element when on single views.
*/
function _s_post_thumbnail() {
if ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) {
return;
}
if ( is_singular() ) :
?>
<div class="post-thumbnail">
<?php the_post_thumbnail(); ?>
</div><!-- .post-thumbnail -->
<?php else : ?>
<a class="post-thumbnail" href="<?php the_permalink(); ?>" aria-hidden="true">
<?php
the_post_thumbnail( 'post-thumbnail', array(
'alt' => the_title_attribute( 'echo=0' ),
) );
?>
</a>
<?php endif; // End is_singular().
}
endif;