forked from mirror/_s
CS: correct indentation of a newly introduced function
This commit is contained in:
parent
98e3e75109
commit
1abaebcdaa
|
@ -112,13 +112,13 @@ 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;
|
||||||
}
|
}
|
||||||
|
@ -144,5 +144,5 @@ function _s_post_thumbnail() {
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
endif; // End is_singular().
|
endif; // End is_singular().
|
||||||
}
|
}
|
||||||
endif;
|
endif;
|
||||||
|
|
Reference in New Issue