Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save mehedicsit/70358fa532d91b5fef20 to your computer and use it in GitHub Desktop.

Select an option

Save mehedicsit/70358fa532d91b5fef20 to your computer and use it in GitHub Desktop.
wp custom register post type calling
<section id="content">
<?php $image_gallery=new WP_Query(
array(
'post_type'=>'zBoom_gallery',
'posts_per_page'=>20,
)); ?>
<div class="wrap-content zerogrid">
<div class="row block03">
<?php while($image_gallery->have_posts()):$image_gallery->the_post() ?>
<div class="col-1-4">
<div class="wrap-col">
<article>
<?php the_post_thumbnail(); ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h2>
</article>
</div>
</div>
<?php endwhile; ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment