使用多个自定义字段查询帖子

发布于 2024-11-19 09:23:30 字数 500 浏览 0 评论 0原文

我使用此代码来显示来自“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文