Skip to content

Instantly share code, notes, and snippets.

@ElmahdiMahmoud
Created November 15, 2013 11:16
Show Gist options
  • Save ElmahdiMahmoud/7482791 to your computer and use it in GitHub Desktop.
Save ElmahdiMahmoud/7482791 to your computer and use it in GitHub Desktop.
wp: item-gallery
<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