wordpress:新的 WP_Query 和 WHERE
为什么忽略我的第二个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 WordPress WP_Query API 修改查询。当您使用
author
(id)整数或author_name
(字符串)时,WordPress 会为您处理 WHERE。You can modify the query using the WordPress WP_Query API. WordPress handles the WHERE for you when you use the
author
(id) integer orauthor_name
(string).查看手册。语法似乎是
Check out the manual. The syntax seems to be