WordPress 如何在表格中显示帖子标题及其标签

发布于 2024-12-29 17:32:41 字数 115 浏览 0 评论 0原文

大家好,wordpress 我想知道如何查询帖子标题和帖子中的标签。我现在已经查询了帖子标题帖子日期,但我缺少帖子标签,因为它位于不同的表上,而且我不知道如何选择每个帖子内的标签。 谢谢,任何回复都非常感谢,非常感谢

Hello everyone in wordpress I was wondering how to QUERY the POST TITLE and the TAGS inside those POST. I have now queried the POST title POST date but Im missing the POST TAGS because it is located on different table and I dont know how to Select the TAGS inside each POST.
Thank you, any reply is deeply appreciated thank you very much

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

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

发布评论

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

评论(1

℡寂寞咖啡 2025-01-05 17:32:41

这样的事情对你来说怎么样?它基本上是说显示左表 (wp_posts) 中的所有内容,然后匹配两个表中的帖子 ID,并在标签存在时显示标签。这个的一些变体应该适合你。我们可能需要花点功夫才能让它正常工作,但无论如何这就是想法。

SELECT wp_posts.ID, wp_posts.post_title, wp_posts.guid, wp_posts.date, 
othertable_othercolumn
FROM wp_posts
LEFT JOIN othertable
ON wp_posts.ID=othertable.ID
WHERE wp_posts.post_type='post' AND wp_posts.post_status ='publish'

其他列是指标签的列名称,其他表是其他表的名称

How would soemthing like this work for you. It basically says to display everything in the left table (wp_posts) then it matches the post id's in both tables and displays tags if tags exist. Some variation of this should work for you. There might we a little screwing around to get this to work right but this is the idea anyway.

SELECT wp_posts.ID, wp_posts.post_title, wp_posts.guid, wp_posts.date, 
othertable_othercolumn
FROM wp_posts
LEFT JOIN othertable
ON wp_posts.ID=othertable.ID
WHERE wp_posts.post_type='post' AND wp_posts.post_status ='publish'

by other column i mean the column name of your tags, othertable is the name of the other table

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