1 2 3 下一页 将query_posts()放在LOOP之前限定你所需要的条件,wp_query会产生一个新的使用你的参数的SQL查询,而忽视通过URL接收到的其它的参数,如果想不忽略,可以在调用中使用$query_string。 query_posts($query_string . "&order=ASC")
设置文章显示的顺序,但是不干扰其余的查询字符串,参数前须有“&”符号 其他还有N多用途~~ 主页不显示某一分类下的日志 <?PHP if (is_home()) { query_posts("cat=-3"); } ?>
获得特定的日志 <?php query_posts('p=5'); ?>
获得特定的页面 <?php query_posts('page_id=7'); //只返回网页7 ?>
<?php query_posts('pagename=about'); //只返回关于网页 ?>
<?php query_posts('pagename=parent/child'); // 返回母网页的子网页 ?>
创建所有文章列表,并且提供分页功能 <?php query_posts($query_string.'posts_per_page=-1'); while(have_posts()) { the_post(); put your loop here ; } ?>
========================================== 类别 参数 显示属于某个类别的文章 cat
category_name
根据ID显示一个类别 只显示来自一个类别ID的文章 query_posts('cat=4');
(责任编辑:admin) |