Skip to content

Instantly share code, notes, and snippets.

@raaar
Created July 28, 2012 13:50
Show Gist options
  • Save raaar/3193488 to your computer and use it in GitHub Desktop.
Save raaar/3193488 to your computer and use it in GitHub Desktop.
WORDPRESS: Loop Custom Taxonomy in custom Post type
<?php // loop for taxonomy in custom post-type
$argsMine = array(
'numberposts' => -1,
'orderby' => 'desc',
'post_type' => 'info',
'section' => 'minesweeper',
'post_status' => 'publish'
);
$postslist = get_posts($argsMine);
foreach ($postslist as $post) :
setup_postdata($post);
?>
<li class="entry">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p><?php the_content(); ?></p>
</li>
<?php endforeach; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment