【WP覚書】サイドバーに特定のカテゴリの記事一覧を昇順で表示する
【WP覚書】サイドバーに特定のカテゴリの記事一覧を昇順で表示する
<?php
$posts = get_posts('numberposts=20&category=3&order=ASC');
global $post;?>
<ul class="recentEntries">
<?php
if($posts): foreach($posts as $post): setup_postdata($post); ?>
<li><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; endif;?></ul>
参考サイト
[WordPress]特定のカテゴリーの記事一覧を表示する方法 | i商店β


横浜在住。Web制作の仕事をしているへっぽこワーキングマザーです。6歳児に育てられています。







ディスカッション
コメント一覧
まだ、コメントがありません