loading...

昏天暗地折腾新的主题ING,发现query_posts()真是无比强大,记录一下~~

将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');

根据名称显示一个类别

只显示属于某个类别名的文章

query_posts('category_name=Staff Home');

显示几个类别及ID

显示属于几个类别ID的文章

query_posts('cat=2,6,17,38');

删除某个类别的文章

显示所有的文章,但是类别ID前面有个’-'(负号)负号的类被除外。

query_posts('cat=-3');

删除属于类别3的所有文章。有一个限制性条款:会删除只属于类别3的所有文章。如果一个类别也同时属于其它的类别,这个类别仍然不会被删除。

标签参数

显示与某个标签相关的文章

  • tag

为某个标签提取文章

query_posts('tag=cooking');

获得拥有任何这样的标签的文章

query_posts('tag=bread,baking');

获取拥有这三个标签的文章

query_posts('tag=bread+baking+recipe');

作者参数

你也可以根据作者限制文章数目

  • author_name=Harriet
  • author=3

author_name在 user_nicename区操作, 同时作者 在作者id上操作。

文章 & 网页参数

返回一篇单独的文章或者一个单独的网页

  • p=1 – 使用文章 ID来显示第一篇文章
  • name=first-post – 使用 post Slug 显示第一篇文章
  • page_id=7
  • pagename=about
  • showposts=1 (你可以使用 showposts=3,或者其它的任何数字显示一定数目的文章)

由于 模板层级方面的原因, home.php先执行了。这意味这你可以编写一个home.php,home.phh调用query_posts()重新得到一个特别的网页并且将那个网页设置为你的首页。没有任何插件或者hacks,你需要运行一个机制,并且显示和维护一个非博客的首页。

更有用的方法,可能是利用WP的网页功能并且为你的首页使用这个功能。你可以将”关于网页”设置为entry point或者设置为站点的末页。你可能执行一些更动态的步骤,设置一个自定义网页,显示最近的评论,文章,类别,存档。请看看下面的例子。

时间参数

得到某个特别的时间段内发表的文章

  • hour=
  • minute=
  • second=
  • day= – 一个月中的每一天; 显示,例如,十五号发表的所有文章。
  • monthnum=
  • year=

网页参数

  • paged=2 -显示使用”以前发表的文章”链接时,通常在网页2上显示的文章。
  • posts_per_page=10 -每个网页显示的文章数目;-1这个值,会显示所有的文章。
  • order=ASC -按时间顺序显示文章,以相反的顺序显示DESC(默认)

Offset 参数

你不能转移或者忽视一个或者更多的原始文章,这些文章一般是你的query同时使用offset参数收集到的。

下面的函数会显示(1)最近的5篇文章

query_posts('showposts=5&offset=1');

根据参数排序

根据这个区给得到的文章排序

  • orderby=author
  • orderby=date
  • orderby=category
  • orderby=title
  • orderby=modified
  • orderby=modified
  • orderby=menu_order
  • orderby=parent
  • orderby=ID
  • orderby=rand

同时考虑”ASC”或者的”DESC”的排序参数

联合参数

你可能从上面的例子中注意到,你使用一个&(&符号)将参数组合在一起,像:

query_posts('cat=3&year=2004');

类别13,关于当前月份显示在主页上的文章:

if (is_home())  {
query_posts ($query_string . '&cat=13&monthnum=' . date('n',current_time('timestamp'))); }

在2.3版本中,这个参数组合会返回属于类别1同时属于类别3的文章,只显示两篇(2)文章,根据标题,按降序排列:

query_posts(array('category__and'=>array(1,3),'showposts'=>2,'orderby'=>title,'order'=>DESC));

在2.3和2.5版本中,你可能期待下面的内容,返回属于类别1并且标签为”苹果”的所有文章

query_posts('cat=1&tag=apples');

一个bug阻止这个运行。请看看Ticket #5433,一个工作区要搜索几个使用+的标签

query_posts('cat=1&tag=apples+apples');

对于先前的查询,这个会产生期待的结果。注意使用’cat=1&tag=apples+oranges’能够产生期待的结果。

资料来源:站长百科 Template Tags/query posts



本站文章未特殊注明均为原创,转载需经本人同意,请善用以下链接

Trackback: http://www.iros.me/powerful-query-posts.html/trackback

Google书签 新浪ViVi 365Key网摘 天极网摘 我摘 POCO网摘 博采网摘 YouNote网摘 和讯网摘 博拉网 igooi网摘 I2Key网摘 天下图摘 百特门网摘 Del.icio.us Yahoo书签 奇贴 QQ娱乐摘 添加到Digg! 添加到Facebook!

25 Responses to "学习使用强大的query_posts(),wordpress日志调用咱爱咋咋地~~"

1 | 俞昊然

五月 15th, 2009 at 10:54

Avatar

如果我想排除一个特定tag该怎么写呢?
tag=-sun+-sun好像不行哈。呵呵

2 | 波波

七月 13th, 2009 at 11:44

Avatar

因为要解决按照关键字调用的形态,被人推荐到这篇日志,受用了,留下脚印.

3 | tearsday

一月 20th, 2011 at 16:59

Avatar

正需要 非常详细 楼主哪里找到的这篇文章,官网没有啊

4 | ponytail

一月 21st, 2011 at 10:59

Avatar

To:tearsday
最下面最下面~ 站长百科是好地方的~~

5 | Chong.Freeman

七月 11th, 2011 at 22:15

Avatar

第一次见这么详细的关于 query_posts 函数的讲解。
学习了!

有这函数,做成什么 CMS 模板都很方便了。
如博主所说 wordpress日志调用咱爱咋咋地~~

6 | blepharosymphysis abjoint affronte

五月 13th, 2012 at 21:47

Avatar

it sounds. edit. read it out loud…

to others, get their opinions. edit it again. cut out all unnecessary dialogue, adjectives, adverbs, pronouns and obvious fillers. when you’ve edited it, edit it again, and then again. read it aloud to yourself and others one last time before taking…

7 | Wordlistz2

五月 15th, 2012 at 18:05

Avatar

Skyzzz2…

Wonderful blog post, saw on…

8 | see this about best home based business to start

五月 16th, 2012 at 04:23

Avatar

support 300×250 ads in the right rail….

i recommend using 300×250 ads as they seem to convert the best. i always put 3 on every blog page.i also usually put the most recent posts, recent comments and tag cloud in place.all of these help keep the content a…

9 | own-a-franchise.org

五月 16th, 2012 at 04:27

Avatar

you rely on this stream. to gain…

an expertise in freelance blogging, you can follow the tips given below:• read a lot of good blogs. • start your own blog. • in an already popular blog, write as a guest writer and include the links of your own…

10 | http://startmyownbusinessideas.com

五月 16th, 2012 at 04:28

Avatar

nights and endless research to be done….

your blog writer will take care of it. you will have more time to focus your attention on larger tasks.hire a blog writer and you will find yourself being able to tackle all the other things on your to do list….

11 | start up a franchise

五月 16th, 2012 at 06:49

Avatar

to write for you. in case you…

do not like the final write up, you can always ask for a rewriting and you do not need to pay the outsourced worker until you are completely satisfied with the quality of the work. there is an emerging need for…

12 | here

五月 16th, 2012 at 06:51

Avatar

do is sit back and wait for…

readers to come across your blog and begin reading it. people may find you blog or you can tell your friends about it. you don’t actually have to advertise it as the people who read it will be the ones that…

13 | this post is great for a beginner

五月 16th, 2012 at 06:55

Avatar

a stress relief. try to watch your…

cat and see if the pet starts scratching when it is nervous or frightened. scratching helps cats calm down and relax.one great advantage of cat trees and cat furniture is that they are covered in sisal or carpet. thus, the feline…

14 | mini lave vaisselle 6 couverts

五月 16th, 2012 at 12:08

Avatar

Nice post…

Real nice pattern and excellent written content , absolutely nothing else we require : D….

15 | bad credit unsecured card

五月 16th, 2012 at 14:39

Avatar

rank.11. writing from personal experience is very…

easy it’s easy to say your views and you can go into detail with little effort. the good thing about writing about your personal experiences is that you can form a bond with your readers and that is always good. add…

16 | more information

五月 16th, 2012 at 14:50

Avatar

that you have searched for. it is…

important to do this if you want to make money online with your blogging. the keywords you choose should be found within your writing, in both the posts and the title. otherwise you will find that your are simply keyword stuffing.if…

17 | http://www.disquedurinterne.net/

五月 16th, 2012 at 15:49

Avatar

It is really hard these days to find enough support…

My friend is truly constantly but in a rash manner proclaiming that in all honesty that it is difficult to really easily procure some good online support, but there is…

18 | http://www.rasoirelectrique.org/

五月 16th, 2012 at 16:02

Avatar

Weebly article…

I saw a writer talking about this on Weebly and it linked to…

19 | http://www.camescopehd.net/

五月 16th, 2012 at 19:13

Avatar

Super article…

I do accept as true with all the ideas you’ve offered for your post. They’re really convincing and will certainly work. Still, the posts are too quick for novices. May you please prolong them a bit from subsequent time? Thank you for the post….

20 | ici

五月 16th, 2012 at 20:34

Avatar

It is really hard these days to find enough support…

My friend is truly constantly but in a rash manner proclaiming that in all honesty that it is difficult to really easily find some good online support, but there is…

21 | best michigan shoulder consultant

五月 17th, 2012 at 00:25

Avatar

those who are interested will come visit…

blogs and there you have it – instant fame!to make sure that you keep your clients and at the same time gain their loyalty, you should keep them posted even once a week, update your blogs accordingly. if you do this…

22 | cliquez ici

五月 17th, 2012 at 13:23

Avatar

Bing results…

While searching Bing I found this page in the search results and I didn’t think it match…

23 | http://misha.hubpages.com/

五月 18th, 2012 at 17:33

Avatar

you want you need to remember that…

not every computer has every font installed on it. in particular, most people don’t have the fancy fonts installed on their machines. so if you choose one of these fonts for your blog it will not display how you want it…

24 | lipo 6 black reviews

五月 19th, 2012 at 03:54

Avatar

there are any grammatical errors.you should read…

it once or twice to see if it is interesting or not as you are your best critic and if you find a need you should edit it. a good blog provides relevant information relevant to its niche. it is not…

25 | Fisher Investments

五月 19th, 2012 at 13:03

Avatar

on how pre-selling works with blogging.the first…

thing that you have to do is to create an informative blog that can provide real facts about what you are offering the public and make it interesting enough for your potential clients to read. this means that your blogs must…

Comment Form

*

[鼻血] [黑线] [鬼脸] [面条泪] [阴笑] [贼笑] [羞] [神气] [礼物] [生气] [满足] [游魂] [汗] [死光] [期待] [晕了] [无神] [扁] [感动] [怒了] [心心眼] [得意] [开心] [大泪] [大惊] [嘟嘴] [唱歌] [哈] [呵欠] [呜呜] [呆] [吓] [吐] [凸] [不爽] [ZZZ] [NANI?] [FUFU] [CHU]



Web Share

About Me

    Enjoy Work!&& Enjoy Life!

  • 年过半百的一半却只能通过绑定来实现社会化的不想宅却没有办法的挺宅的向往B型却只是O型的不会游泳所以只能沉沦腐海的爱K歌但还不到麦霸程度的现在貌似挺稀有的白羊挨踢代码女
  • 硬盘控、下载强迫症、HTC大脸人、伪谷粉
  • Money是好物!Wordpress是好物!Jquery是好物!

Latest Comments

  • Fisher Investments: on how pre-selling works with blogging.the first... thing that you have to do is t
  • here: can put their mark on the new... place, decorate their room, help with the garden,
  • click here: and it won't be long before you'll... have to be turning down jobs because you are
  • Fisher Investments: popular blog is a double-edged sword. everyone... wants the traffic that comes wit
  • my blog: can be hard to write good content.... one of the best ways to find good ideas to w
  • Fisher Investments: what benefits it can do for the... public. make them realize that the product or s
  • Fisher Investments: might want to check out..."i sincerely hope... that these tips and ideas that i ha
  • read for yourself: that your blog will spread around the... web without you having to do anything. a
  • see it for yourself: post pregnancy diet after pregnancy is a... diet that has more of fruits and veget
  • click here: the reader interested in reading the whole... post.to write a good blog post you j

疼讯微博口水地

My Place

    Posts 98  Comments 1,763  
    Blog stared at 2008.10.21
    Blog open at 2008.11.21   Free Traffic Counter
ponytail1985@hotmail.com 358589691 ponie325@gmail.com Ajax CommentLuv Enabled 275ca7ef21959162b094a66262fa328f

无觅相关文章插件,快速提升流量