标签:分类目录

WordPress文章列表排除指定分类下的文章

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; ?> < ?p […]

查看更多