gpt4 book ai didi

mysql - 需要有关 WordPress 的 MySQL 查询的帮助

转载 作者:行者123 更新时间:2023-11-29 09:20:15 25 4
gpt4 key购买 nike

我的问题不在于 WordPress 的 WPDB 类,而在于 MySQL 语法。我正在尝试使以下序列起作用:

  • 获取所有帖子 ID 的数组
  • 过滤掉特定类别的帖子
  • 过滤掉重复内容、修订内容、草稿等。仅显示已发布的内容。

帮忙?谢谢。

最佳答案

使用 query_posts 函数 http://codex.wordpress.org/Template_Tags/query_posts通过将类别 id 或类别名称传递给它。链接上已对此进行了全部解释。

发表评论后进行编辑:

您可以使用 get_posts http://codex.wordpress.org/Template_Tags/get_posts ,据我所知,它们都返回数组。

$posts = get_posts('category=1');
foreach($posts as $post) {
echo $post->ID; // or whatever you want to do with it...
}

关于mysql - 需要有关 WordPress 的 MySQL 查询的帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2128112/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com