Last active
December 18, 2015 12:18
-
-
Save codee47/5781424 to your computer and use it in GitHub Desktop.
Display just the first thumbnail in wordpress.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php $first = true; ?> | |
<?php /*Post query*/ ?> | |
<?php if ( $first ) : ?> | |
<?php if ( has_post_thumbnail() ) { ?> | |
<figure class="post-thumb aligncenter"> | |
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Link ehhez %s', 'akg' ), the_title_attribute( 'echo=0' ) ); ?>"><?php the_post_thumbnail( 'topstories-thumb' ) ?></a> | |
</figure> | |
<?php } ?> | |
<?php $first = false; ?> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment