ポストスニペッツは便利だが、カスタムポストタイプの挿入は難しい。よく使うのでメモっておこう。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
$args = array( 'cat' => {bunrui}, 'post_type' => 'disease', 'order' => 'DESC', 'posts_per_page' => {kazu}, ); $the_query = new WP_Query( $args ); ?> <ul class="arrow"> <?php if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?> <li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> <?php endif; ?> <?php wp_reset_postdata(); ?> </ul> |
変数は見てのとおりkazu,bunruiです。動くよ~