wordpress:新的 WP_Query 和 WHERE

发布于 2024-11-04 11:21:15 字数 219 浏览 0 评论 0原文

为什么忽略我的第二个 WHERE 函数?

通过此功能,我可以获得所有用户的所有新闻。

为什么要抓取 id 为 1 的用户?

$新闻=新 WP_Query('post_type=news&post_author!=1&orderby=ID&order=ASC');

谢谢 ;)

why ignore my second WHERE function?

With this function I get all news but with all users.

Why grab and users where id is 1?

$news = new
WP_Query('post_type=news&post_author!=1&orderby=ID&order=ASC');

Thanks ;)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心欲静而疯不止 2024-11-11 11:21:15

您可以使用 WordPress WP_Query API 修改查询。当您使用author(id)整数或author_name(字符串)时,WordPress 会为您处理 WHERE。

$args = array (
    'post_type' => 'news',
    'ordery' => 'id',
    'order' => 'ASC',
    'author' => (-1)
    );

$news = new WP_Query($args);

You can modify the query using the WordPress WP_Query API. WordPress handles the WHERE for you when you use the author(id) integer or author_name (string).

$args = array (
    'post_type' => 'news',
    'ordery' => 'id',
    'order' => 'ASC',
    'author' => (-1)
    );

$news = new WP_Query($args);
抠脚大汉 2024-11-11 11:21:15

查看手册。语法似乎是

$news = new WP_Query('post_type=news&author=-1&orderby=ID&order=ASC');

Check out the manual. The syntax seems to be

$news = new WP_Query('post_type=news&author=-1&orderby=ID&order=ASC');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文