特定のカテゴリの記事をトップページに表示する
2009年 5月 26日 admin
WordPress › フォーラム » 特定のカテゴリの記事をトップページに表示させる時の問題について<?php if( $posts = get_posts('category_name=recommend') ) :?> <h3 id="h-recommend">おすすめの記事</h3> <?php foreach( $posts as $post) : setup_postdata($post)?> <h4><?php the_title()?></h4> <p>記事本文</p> <?php endforeach;endif?>