WordPress 默认的文章列表调用代码是这样的:
< ?php while (have_posts()) : the_post(); ?> < ?php endwhile; ?>
这里默认是调用的当前分类的日志列表,包括子分类下的文章。
如果想排除一些分类不让显示在列表里,比如想排除分类ID为32、33的文章,可以加入cat=-32,-33来实现:
< ?php if ( have_posts() ) : query_posts($query_string .'&cat=-32,-33'); while ( have_posts() ) : the_post(); ?> < ?php endwhile; ?> < ?php endif; ?>
这样就OK了,代码可以直接拿去用。
好东西学习了,可以转载吧啊
你转这个有啥用?:)