前提・実現したいこと
WordPressとPHP初心者です。
Wordpressのアーカイブページに、複数のカテゴリーの情報(カスタムタクソノミー => fresh/baked/eat)を一覧で表示したいです。
発生している問題・エラーメッセージ
Undefined variable: taxonomy
Trying to get property 'slug' of non-object
Trying to get property 'name' of non-object
上記がPHPエラーとして表示されました
プレビューでは、カテゴリを無視して表示されます。
該当のソースコード
<?php $args = array( 'post_type' => 'products', 'tax_query' => array( //タクソノミーに関する指定はこの中にすべて 'relation' => 'OR', //条件をどのような関係で指定するか //条件1 array( 'taxonomy' => 'product_category', //タクソノミー名を指定 'field' => 'slug', //タームの指定をIDで指定するか、slugで指定するか 'terms' => array('fresh'), //'terms'をどの関係で指定するか ), //条件2 array( 'taxonomy' => 'product_category', 'field' => 'slug', 'terms' => array('baked'), ) ), //条件3 array( 'taxonomy' => 'product_category', 'field' => 'slug', 'terms' => array('eat'), ) ); $the_query = new WP_Query($args); ?> <div class="products_cont"><h4>生菓子</h4> <ul class="products_list"> <?php get_the_terms( $id, $taxonomy ); ?> <?php if ($terms = get_the_terms($post->ID, 'fresh')) { foreach ( $terms as $term ) { echo $term_slug = $term->slug; echo esc_html($term->name); } }?> <?php if($the_query->have_posts()) : while ($the_query->have_posts()) : $the_query->the_post(); ?> <li><figure><img src="<?php echo CFS()->get('img'); ?>"></figure> <dl><dt><?php echo CFS()->get('product_ttl'); ?></dt> <dd><?php echo CFS()->get('detail'); ?></dd> </dl> </li> <?php endwhile; ?> <!-- /ループ終わり--> </ul> </div> <div class="products_cont"><h4>焼菓子</h4> <ul class="products_list"> <?php get_the_terms( $id, $taxonomy ); ?> <?php if ($terms = get_the_terms($post->ID, 'baked')) { foreach ( $terms as $term ) { echo esc_html($term->name); } }?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <li><figure><img src="<?php echo CFS()->get('img'); ?>"></figure> <dl><dt><?php echo CFS()->get('product_ttl'); ?></dt> <dd><?php echo CFS()->get('detail'); ?></dd> </dl> </li> <?php endwhile; endif; ?> <!-- /ループ終わり--> </ul> </div> <div class="products_cont"><h4>イートイン</h4> <ul class="products_list"> <?php get_the_terms( $id, $taxonomy ); ?> <?php if ($terms = get_the_terms($post->ID, 'eat')) { foreach ( $terms as $term ) { echo esc_html($term->name); } }?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <li><figure><img src="<?php echo CFS()->get('img'); ?>"></figure> <dl><dt><?php echo CFS()->get('product_ttl'); ?></dt> <dd><?php echo CFS()->get('detail'); ?></dd> </dl> </li> <?php endwhile; endif; ?> <!-- /ループ終わり--> </ul> <?php wp_reset_postdata(); ?> <?php else: ?> <?php endif; ?>
試したこと
「ループ タクソノミー 取得」や「wordpress カスタムタクソノミー テンプレート読み込み」などで調べて作成したコードなのですが、どこが間違いなのか、検討がつきません。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/13 05:04
2021/12/14 06:54