こんばんは。
質問内容変更しました。
カスタム投稿タイプで用語集を作成しており、
dictionary-categoryというタクソノミを作成し、AtoZと五十音順をタームとして登録しました。
下記コードをarchive-dictionary.phpに入力したのですが、何も表示されず困っております。
どなたかご回答をお願いできますと幸いです。
どうぞよろしくお願いします。
<?php $terms = the_terms(get_the_ID(),'dictionary-category'); $term_ids = array(); foreach($terms as $term){ $term_ids[] = $term->term_id; } $args = array( 'post_type' => 'dictionary', 'posts_per_page' => 99, 'meta_key' => 'views', 'orderby' => 'meta_value_num', 'tax_query' => array( array( 'taxonomy' => 'dictionary-category', 'field' => 'term_id', 'terms' => $term_ids, 'operator' => 'IN' ), ), ); $posts = get_posts($args); ?> <?php foreach($posts as $post): setup_postdata($post); ?> <p class="mb-10"><a href="<?php echo get_permalink(); ?>"><?php the_title(); ?></a></p> <?php wp_reset_postdata(); endforeach; ?>
回答1件
あなたの回答
tips
プレビュー