像要用wp做一個非blog的theme
不跟query_posts打交道是不行的
query_posts是在wp中決定要列出那些文章的函數
譬如我要在編號6的類別下但又不要標號70的前20篇文章
可一寫成這樣:
< ?php $query_array = array("showposts"=>20,"post__not_in"=>array(70),"category__in"=>array(6));
query_posts($query_array); ?>
< ?php while (have_posts()) : the_post(); ?>
<h4 id="post-<?php the_ID(); ?>">
< ?php the_title(); ?>
</h4>
< ?php the_content(); ?>
< ?php endwhile; ?>
< ?php endif; ?> |
