更新履歴について質問です。
以下が更新履歴を表示するものなのですが、
●部分のカテゴリーを複数指定する方法はありますか?
またどのようにすればよいのでしょうか?
ご教示よろしくお願いいたします。

<ul>
<?php
$posts = get_posts("numberposts=5&category=●&orderby=post_date");
foreach ($posts as $post):
setup_postdata($post);
?>
<li><?php the_time('Y/m/d') ?> : <a href="<?php the_permalink()
?>"><?php the_title() ?></a>
<?php if (date('U') - get_the_time('U') <= 3 * 24 * 60 * 60): ?>
 - <span class="ca"><?php the_category(', ') ?>に追加しました。</span>

<span class="new">  New!!</span>
<?php endif; ?>
</li>
<?php endforeach; ?>
</ul>