CS: correct indentation of a newly introduced function

This commit is contained in:
jrfnl 2018-02-27 13:59:07 +01:00
parent 98e3e75109
commit 1abaebcdaa
1 changed files with 28 additions and 28 deletions

View File

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