【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商店β
ディスカッション
コメント一覧
まだ、コメントがありません