お仕事メモ。
本日来た修正のひとつ。
WordPressで記事をランダムに表示させたい場合、
query_posts() 関数のorderby(並び順引数)を利用する。
ランダムに表示したいループ箇所にorderby=randを指定。
[html]
<?php query_posts(‘showposts=3&orderby=rand’);?>
<?php if(have_posts()):while(have_posts()):the_post();?>
<h2><a href="<?php the_permalink();?>"><?php the_title();?></a></h2>
<?php the_content();?>
<?php endwhile;endif;?>
[/html]