こんにちは私は1つのカテゴリーだけを表示するが、カテゴリー16とカテゴリー40を表示したい。ユーザーがカテゴリー16と40を選択する必要があるときだけ、ページ:1ページあたりのポストに2つのカテゴリを表示
<?php
global $post;
$args = array('posts_per_page' => 1, 'offset'=> 0, 'category' => 16);
$myposts = get_posts($args);
foreach ($myposts as $post) :
setup_postdata($post);
?>
<div class="categoriesStyle"><?php exclude_post_categories("40"); ?></div>
<div class="first"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></div>
<div class="paddingSpace"></div>
<div class="contentText"><span style="color: #000"><?php echo intro_text(150); ?></span></div>
<hr class="style-two">
<?php endforeach;
wp_reset_postdata(); ?>