某些事情正在导致我们的数据库发疯。连续进行这三个查询是否可能存在问题?
<ul>
<?php
query_posts(array('category__in'=>38082, 'order-by'=>'post_date','order'=>'DESC','posts_per_page'=>'5'));
while (have_posts()) : the_post();
?>
<li><a href="<?php the_permalink(); ?>"><?php echo the_title()?></a></li>
<?php endwhile; ?>
<?php wp_reset_query();?>
</ul>
<ul>
<?php
query_posts(array('category__in'=>1, 'order-by'=>'post_date','order'=>'DESC','posts_per_page'=>'5'));
while (have_posts()) : the_post();
?>
<li><a href="<?php the_permalink(); ?>"><?php echo the_title()?></a></li>
<?php endwhile; ?>
<?php wp_reset_query();?>
</ul>
<ul>
<?php
query_posts(array('category__in'=>15, 'order-by'=>'post_date','order'=>'DESC','posts_per_page'=>'5'));
while (have_posts()) : the_post();
?>
<li><a href="<?php the_permalink(); ?>"><?php echo the_title()?></a></li>
<?php endwhile; ?>
<?php wp_reset_query();?>
</ul>