Skip to content

Instantly share code, notes, and snippets.

@furahaclothing
Created September 13, 2012 08:21
Show Gist options
  • Save furahaclothing/3712842 to your computer and use it in GitHub Desktop.
Save furahaclothing/3712842 to your computer and use it in GitHub Desktop.
wordpress-カスタム投稿の関連記事を出力-
<?php
$loop = new WP_Query( array( 'post_type' => 'blog', 'posts_per_page' => 4, 'orderby' =>rand ) );
while ( $loop->have_posts() ) : $loop->the_post();
?>
<div class="thumbnail_box3">
<li><a href="<?php the_permalink() ?>"><?php the_post_thumbnail(array(150,150)); ?> </a></li>
<div class="thumtitle"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__(' %s', 'uscestheme'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></div></div>
<?php endwhile;wp_reset_query(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment