Skip to content

Instantly share code, notes, and snippets.

@furahaclothing
Created August 10, 2012 04:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save furahaclothing/3310979 to your computer and use it in GitHub Desktop.
Save furahaclothing/3310979 to your computer and use it in GitHub Desktop.
single.phpに同じカテゴリー内の別の記事をランダム表示
<?php $cat = get_the_category(); $cat = $cat[0]; ?>
<?php $bk_wp_query = clone $wp_query; ?>
<?php queryposts( array('cat' => $cat->cat_ID, 'showposts' => 5,
'orderby' => 'rand', 'post_not_in' => array($post->ID)) ); ?>
<?php while (have_posts()) : the_post(); ?>
"><?php the_title(); ?>
<?php endwhile; ?>
<?php $wp_query = clone $bk_wp_query; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment