如何在 WordPress 帖子中提取相关帖子?

发布于 2024-11-07 05:09:10 字数 254 浏览 0 评论 0原文

我正在为一家小型初创公司构建 WordPress 主题。他们想要一篇关于他们的项目之一的帖子,即 SuperCool App。这是它自己的帖子。

然后,他们希望在底部有关于该帖子的“新闻更新”,每个新闻更新也将是它自己的帖子。

我的问题是,在“SuperCool App”帖子中,如何放置一个循环,仅拉动 SuperCool 应用程序的新闻更新,而不拉动其他项目的新闻更新?

我正在 WordPress 3.1.2 中编辑 single.php。

I am building a WordPress theme for a small startup. They want to have a post about one of their projects, i.e. SuperCool App. It is it's own post.

Then, they want to have at the bottom "News Updates" about that post, which each News Update would be it's own post as well.

My problem is, in "SuperCool App" post, how can I put a loop that only pulls News Updates for SuperCool App, not News Updates for other projects?

I'm editing single.php in WordPress 3.1.2.

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

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

发布评论

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

评论(1

夏日浅笑〃 2024-11-14 05:09:10
 $posts = get_posts(array('numberposts' => 10000, 'category' => 1));

其中类别 id 1 是您的 SuperCool 应用类别

 $posts = get_posts(array('numberposts' => 10000, 'category' => 1));

Where category id 1 is your SuperCool App Category

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文