Created
March 22, 2012 20:10
-
-
Save ShinichiNishikawa/2163054 to your computer and use it in GitHub Desktop.
特定のカスタム投稿タイプの記事の一覧を取得する
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
<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