Created
November 15, 2013 11:16
-
-
Save ElmahdiMahmoud/7482791 to your computer and use it in GitHub Desktop.
wp: item-gallery
This file contains hidden or 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
<div class="item-gallery"> | |
<?php query_posts('category_name=CATEGORY-NAME&posts_per_page=1'); ?> | |
<?php while (have_posts()) : the_post(); ?> | |
<div class="view"> | |
<?php the_post_thumbnail(); ?> | |
</div> | |
<div class="thumbnail"> | |
<ul> | |
<li> | |
<?php $meta = get_post_meta($post->ID, 'thumbnail' ); ?> | |
<?php if ( count($meta) > 0 ) : ?> | |
<?php foreach ($meta as $img): ?> | |
<img src="<?php echo $img; ?>" alt="<?php the_title(); ?>" /> | |
<?php endforeach; ?> | |
<?php endif; ?> | |
</li> | |
</ul> | |
</div> | |
<?php endwhile;?> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment