【Wordpress】特定ターム(term)での記事タイトル一覧を表示
サイドバーなどに特定タームの記事タイトル一覧を表示したいときなどに使えます。
>|php|
<?php$args = array('post_type' => '投稿タイプ名','taxonomy' => '分類名','term' => '値','numberposts' => '0',);$my_posts = get_posts($args);foreach ( $my_posts as $post ) {setup_postdata($post); ?><li class="icon"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li><?php}?>||<


