有些東西導致我們的數據庫發瘋。這三個查詢是否有可能存在問題?Wordpress查詢
<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>
你可以提供關於*數據庫發瘋的更多細節*嗎? – Tchoupi
你在數據庫中有多少帖子? –
30K +文章。服務器負載繼續下去,就像一個while循環無限持續下去一樣。 – ok1ha