Skip to content

Instantly share code, notes, and snippets.

@ShinichiNishikawa
Created March 22, 2012 20:10
Show Gist options
  • Save ShinichiNishikawa/2163054 to your computer and use it in GitHub Desktop.
Save ShinichiNishikawa/2163054 to your computer and use it in GitHub Desktop.
特定のカスタム投稿タイプの記事の一覧を取得する
<ul>
<?php
$args = array(
'post_type' => 'my_posttype',
'taxonomy' => 'my_taxonomy',
'term' => 'my_term',
'numberposts' => '-1',
);
$my_posts = get_posts($args);
foreach ( $my_posts as $post ) {
setup_postdata($post); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php
}
?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment