いつもお世話になります。
WordPressでメディアサイトのようなものを作成しております。
前提
・複数の ブランドの名前がついたページ
・複数の ブランドに関する記事ページ
があります。
やりたいこと
ブランドに関する記事ページにブランドのタグをつけた場合、
そのブランドのタグがついた記事を、該当のブランドページに関連記事として出力したいです。
ブランドページにはタグなどがついていませんので、ブランドページと記事を紐づけられるのは、ページのタイトル部分(そこにブランド名を入力しています)とタグ、になるのではないかと思っています。
試したこと
記事ページにある「関連記事」のコードを変更すれば実現できるのではないかと思い、以下コードを変更してみました。
▼元の関連記事のコード
PHP
1<?php 2/** 3 * 関連記事の一覧 4 */ 5?> 6<p class="point"><span class="point-in">関連記事</span></p> 7<div class="kanren"> 8 <?php 9 $kanrenpost_no = 5; //表示したい記事数 10 $categories = get_the_category( $post->ID ); 11 $category_ID = array(); 12 foreach ( $categories as $category ): 13 array_push( $category_ID, $category->cat_ID ); 14 endforeach; 15 $args = array( 16 'post__not_in' => array( $post->ID ), 17 'posts_per_page' => $kanrenpost_no, 18 'category__in' => $category_ID, 19 'orderby' => 'rand', //ランダム表示 20 ); 21 $st_query = new WP_Query( $args ); ?> 22 <?php 23 if ( $st_query->have_posts() ): ?> 24 <?php 25 while ( $st_query->have_posts() ) : $st_query->the_post(); ?> 26 <dl class="clearfix"> 27 <dt><a href="<?php the_permalink() ?>"> 28 <?php if ( has_post_thumbnail() ): // サムネイルを持っているときの処理 ?> 29 <?php the_post_thumbnail( 'thumbnail' ); ?> 30 <?php else: // サムネイルを持っていないときの処理 ?> 31 <img src="<?php echo get_template_directory_uri(); ?>/images/no-img.png" alt="no image" title="no image" width="100" height="100" /> 32 <?php endif; ?> 33 </a></dt> 34 <dd> 35 <p class="kanren-t"><a href="<?php the_permalink(); ?>"> 36 <?php the_title(); ?> 37 </a></p> 38 39 <div class="smanone2"> 40 <?php the_excerpt(); //抜粋文 ?> 41 </div> 42 </dd> 43 </dl> 44 <?php endwhile; ?> 45 <?php else: ?> 46 <p>関連記事はありませんでした</p> 47 <?php endif; ?> 48 <?php wp_reset_postdata(); ?> 49</div>
▼見様見真似でいじってみたコード
PHP
1<?php 2/** 3 * 関連記事の一覧 4 */ 5?> 6<p class="point"><span class="point-in">関連記事</span></p> 7<div class="kanren"> 8 <?php 9 $kanrenpost_no = 5; //表示したい記事数 10 $posttags = get_the_tags( $tarm->ID ); 11 $tarm_ID = array(); 12 foreach ( $posttags as $category ): 13 array_push( $tarm_ID, $posttags->tarm_ID ); 14 endforeach; 15 $args = array( 16 'post__not_in' => array( $post->ID ), 17 'posts_per_page' => $kanrenpost_no, 18 'category__in' => $tarm_ID, 19 'orderby' => 'rand', //ランダム表示 20 ); 21 $st_query = new WP_Query( $args ); ?> 22 <?php 23 if ( $st_query->have_posts() ): ?> 24 <?php 25 while ( $st_query->have_posts() ) : $st_query->the_post(); ?> 26 <dl class="clearfix"> 27 <dt><a href="<?php the_permalink() ?>"> 28 <?php if ( has_post_thumbnail() ): // サムネイルを持っているときの処理 ?> 29 <?php the_post_thumbnail( 'thumbnail' ); ?> 30 <?php else: // サムネイルを持っていないときの処理 ?> 31 <img src="<?php echo get_template_directory_uri(); ?>/images/no-img.png" alt="no image" title="no image" width="100" height="100" /> 32 <?php endif; ?> 33 </a></dt> 34 <dd> 35 <p class="kanren-t"><a href="<?php the_permalink(); ?>"> 36 <?php the_title(); ?> 37 </a></p> 38 39 <div class="smanone2"> 40 <?php the_excerpt(); //抜粋文 ?> 41 </div> 42 </dd> 43 </dl> 44 <?php endwhile; ?> 45 <?php else: ?> 46 <p>関連記事はありませんでした</p> 47 <?php endif; ?> 48 <?php wp_reset_postdata(); ?> 49</div> 50
どうかご教示いただければ幸いでございます。
よろしくお願いいたします。
補足
記事を該当のブランドページに紐づけて表示出来れば問題ないので、
必ずしも「ページタイトルと一致する場合」でなくても構わないと思っています。
もし他にシンプルな方法がありましたらお教えいただければと思います。