WordPress 查询帖子标题和帖子标签
大家好,wordpress 我想知道如何查询帖子标题和这些帖子中的标签。我现在已经查询了 POST 标题 POST 日期,但我缺少 POST 标签,因为它位于不同的表上,而且我不知道如何使用查询选择每个 POST 内的标签。谢谢,非常感谢您的任何回复,非常感谢,这是我的代码从 wp_posts WHERE post_type='post' AND post_status ='publish' 中选择 ID,post_title,guid,post_date
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 using query. Thank you, any reply is deeply appreciated thank you very much this is my code SELECT ID,post_title,guid,post_date FROM wp_posts WHERE post_type='post' AND post_status ='publish'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
无需运行sql查询,您可以使用wordpress功能。
对于标签,您可以使用 get_the_tags
http://codex.wordpress.org/Function_Reference/get_the_tags
对于标题您可以使用
http://codex.wordpress.org/Function_Reference/get_the_title
确保在“循环”内使用这些代码
No need to run sql queries, you can use wordpress functions.
For tags you can use get_the_tags
http://codex.wordpress.org/Function_Reference/get_the_tags
For title you can use
http://codex.wordpress.org/Function_Reference/get_the_title
Make sure to use these codes inside the 'loop'