使用多个自定义字段查询帖子
我使用此代码来显示来自“meta_key=Date
”的帖子,它工作正常!
现在我需要在查询中包含另一个使用数字meta_value的“meta_key=Top
”,以显示帖子并按此meta_value
排序,但我无法弄清楚该函数。
任何人都可以帮助我吗?
提前致谢, 沙芬
<?php
$daily_date = get_option('cus_daily_date');
query_posts("category_name=sports&meta_key=Date&orderby=meta_value&order=asc&meta_value=$daily_date"); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
I am using this code for showing post from "meta_key=Date
" and it is working fine!
Now i need to include another "meta_key=Top
" using numeric meta_value into my query for showing post and ordered by this meta_value
but i can't figure out the function.
Can anyone help me please.
Thanks in advance,
Shafin
<?php
$daily_date = get_option('cus_daily_date');
query_posts("category_name=sports&meta_key=Date&orderby=meta_value&order=asc&meta_value=$daily_date"); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅此处了解详细信息 http://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters
Look here for details http://codex.wordpress.org/Class_Reference/WP_Query#Custom_Field_Parameters