Blogsブログ

固定ページに複数のカテゴリーの記事を表示する方法

公開日 2022.03.28最終更新日 2024.08.18

ワードプレスで固定ページに複数のカテゴリーに紐づいた記事を出すときの覚書^^

<?php $paged = get_query_var(‘paged’); ?>
<?php query_posts(“posts&paged=$paged&cat=2,3&showposts=5″); ?>

<?php if (have_posts()) : while(have_posts()) : the_post(); ?>
<?php
$category = get_the_category();
$cat_id = $category[0]->cat_ID;
$cat_name = $category[0]->cat_name;
$cat_slug = $category[0]->category_nicename;
?>
<li><img src=”<?php echo get_template_directory_uri(); ?>/img/index/icon_top_<?php echo $cat_slug; ?>.png” class=”mr20″><?php echo $cat->category_nicename; ?><span class=”mr20″><?php the_time(‘Y/n/j’); ?></span><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></li>

<?php endwhile; ?>
<?php else: ?>
<?php endif; ?>