WordPress で特定のカテゴリのみ表示させる覚え書き | 東京都世田谷区 ホームページ制作 [k]id

WordPress で特定のカテゴリのみ表示させる覚え書き

Category WordPress Tips Update 2008.05.26

twitterfacebookgoogle+はてなブックマークPocketであとで読むfeedlyで購読

サイドバーに特定のカテゴリーのみを表示させたいと思い

任意の場所に下記を記述するとカテゴリ中のタイトルと記事を表示できます。

<?php $posts = get_posts('numberposts=2&category=1');
foreach($posts as $post) :
setup_postdata($post); ?>
<h2 class="storytitle"><a href="<?php the_permalink() ?>"
rel="bookmark"><?php the_title(); ?></a></h2>
<div class="storycontent">
	<?php the_content(__('(more...)')); ?>
</div>
<?php endforeach; ?>

を記述しコードの1行目の下記箇所を変更

numberposts=2←表示させたい記事の件数

さらに

category=1←カテゴリの通しID

で表示できます。

ページトップへ