ミギムキ

[WordPress] 商品紹介ページに同じカテゴリーの関連商品を並べたい

やりたいこと

サンプルコード

<?php $terms = get_the_terms( $post->ID, 'bag' ); $args = array( 'post_type' => 'product', 'tax_query' => array( array( 'taxonomy' => 'bag', 'field' => 'slug', 'terms' => $terms[0]->slug, ), ), 'post__not_in' => array($post->ID), ); $the_query = new WP_Query($args); if( $the_query->have_posts() ) { echo '<div class="list_product">'; while( $the_query->have_posts() ) { $the_query->the_post(); $title = get_the_title(); $url = get_the_permalink(); $image_html = wp_get_attachment_image( post_custom('prd_image'), 'full' ); ?> <a href="<?php echo $url ?>"> <figure> <?php echo $image_html; ?> <figcaption><?php echo $title; ?></figcaption> </figure> </a> <?php } echo '</div>'; } wp_reset_postdata(); ?>

仕組み、解説、補足など

ご質問など受け付けています

記事の中でわかりにくかったところ、もっと知りたかったこと、間違っていることなど、何でもお気軽にご連絡ください。

ご連絡は下記フォームを利用いただくか、ツイッターアカウント@flat8migi宛てでもOKです。