【コピペ用】ワードプレスで新着記事の件数を制御させる
[最終更新日]2012年1月21日
新着記事の件数を制御させたいとき。
管理画面内の設定>表示設定からでも設定ができるようですが、
こちらの方法でも可能なのでメモ。
query_posts(‘showposts=記事件数’)
をif文に加えればいけそうだ。
あとは、wp_reset_query()を最後に入れる。
<?php query_posts('showposts=5');?>
<?php if(have_posts()) : while(have_posts()) : the_post();?>
記事内容
<?php endwhile;?>
<?php endif;?>
<?php wp_reset_query()?>

