タクソノミーは、カテゴリーやタグのことですね。。
まよったら、これコピペをしてカスタマイズしましょう。
'name', 'hierarchical' => false ); $taxonomys = get_terms( $taxonomy_name, $args); if(!is_wp_error($taxonomys) && count($taxonomys)): foreach($taxonomys as $taxonomy): $url = get_term_link($taxonomy->slug, $taxonomy_name); $tax_posts = get_posts( array( 'post_type' => $post_type, 'posts_per_page' => 5, // 表示させたい記事数 'tax_query' => array( array( 'taxonomy' => $taxonomy_name, 'terms' => array( $taxonomy->slug ), 'field' => 'slug', 'include_children' => true, 'operator' => 'IN' ) ) )); if( $tax_posts ) { ?>name); ?>