以下は、すべての投稿を表示するために使用しているワードプレスクエリですが、クエリは投稿のタグを表示していません。また、特定のカテゴリの投稿を表示するように次のクエリを変更する方法を教えてください。
<?php
$wp_query2 = null;
$wp_query2 = new WP_Query(array(
'post_type' => 'post',
'post_status' => 'publish',
'caller_get_posts'=> 0 ));
while ($wp_query2->have_posts()) : $wp_query2->the_post();
?>
<?php the_date(); ?>
<br />
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php
wp_reset_query();
?>