2016/07/17
カスタム投稿
備忘録です。
以前にもカスタム投稿の関連記事表示について書きましたが、別の方法です。
以前の記事 【WordPress】カスタム投稿ページ(single-●●.php)に関連記事を表示
参考サイト
【WordPress】カスタム投稿のシングルページに関連記事を表示する
<?php global $post; $args = array( 'numberposts' => 8, //8件表示(デフォルトは5件) 'post_type' => 'products', //カスタム投稿タイプ名 'orderby' => 'rand', //ランダム表示 'post__not_in' => array($post->ID) //表示中の記事を除外 ); ?> <?php $myPosts = get_posts($args); if($myPosts) : ?> <?php foreach($myPosts as $post) : setup_postdata($post); ?> <p><a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('thumbnail'); ?><?php the_title(); ?></a></p> <?php endforeach; ?> <?php else : ?> <p>関連アイテムはまだありません。</p> <?php endif; wp_reset_postdata(); ?>
ちなみにorderbyをランダムではなく新着順で表示する場合は
'orderby' => 'date', 'order' => 'ASC',
<?php global $post; $args = array( 'numberposts' => 8, //8件表示(デフォルトは5件) 'post_type' => 'products', //カスタム投稿タイプ名 'taxonomy' => 'genres', //タクソノミー名 ←ここが追加 'orderby' => 'rand', //ランダム表示 'post__not_in' => array($post->ID) //表示中の記事を除外 ); ?> <?php $myPosts = get_posts($args); if($myPosts) : ?> <?php foreach($myPosts as $post) : setup_postdata($post); ?> <p><a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('thumbnail'); ?><?php the_title(); ?></a></p> <?php endforeach; ?> <?php else : ?> <p>関連アイテムはまだありません。</p> <?php endif; wp_reset_postdata(); ?>
<?php global $post; $term = array_shift(get_the_terms($post->ID, 'genres')); //←ここが追加 $args = array( 'numberposts' => 8, //8件表示(デフォルトは5件) 'post_type' => 'products', //カスタム投稿タイプ名 'taxonomy' => 'genres', //タクソノミー名 'term' => $term->slug, //ターム名 ←ここが追加 'orderby' => 'rand', //ランダム表示 'post__not_in' => array($post->ID) //表示中の記事を除外 ); ?> <?php $myPosts = get_posts($args); if($myPosts) : ?> <?php foreach($myPosts as $post) : setup_postdata($post); ?> <p><a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('thumbnail'); ?><?php the_title(); ?></a></p> <?php endforeach; ?> <?php else : ?> <p>関連アイテムはまだありません。</p> <?php endif; wp_reset_postdata(); ?>
参考サイトでは、single-●●.phpに記述となっていますが、sidebar.phpに記述しても同様の表示ができます。
ゼヒトモ内でのプロフィール: ROCKSTREAM, ゼヒトモのホームページ作成・制作サービス, 仕事をお願いしたい依頼者と様々な「プロ」をつなぐサービス
2024/08/20
神社
御朱印
2024/07/06
神社
御朱印
2024/07/06
神社
御朱印
2024/02/09
神社
2024/02/09
神社