WordPress 查询帖子标题和帖子标签

发布于 2025-01-01 10:25:15 字数 250 浏览 0 评论 0原文

大家好,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 技术交流群。

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

发布评论

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

评论(2

酒与心事 2025-01-08 10:25:15

无需运行sql查询,您可以使用wordpress功能。
对于标签,您可以使用 get_the_tags

<?php
$posttags = get_the_tags();
if ($posttags) {
  foreach($posttags as $tag) {
    echo $tag->name . ' '; 
  }
}
?>

http://codex.wordpress.org/Function_Reference/get_the_tags

对于标题您可以使用

<?php echo get_the_title(); ?> 

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

<?php
$posttags = get_the_tags();
if ($posttags) {
  foreach($posttags as $tag) {
    echo $tag->name . ' '; 
  }
}
?>

http://codex.wordpress.org/Function_Reference/get_the_tags

For title you can use

<?php echo get_the_title(); ?> 

http://codex.wordpress.org/Function_Reference/get_the_title

Make sure to use these codes inside the 'loop'

另类 2025-01-08 10:25:15
SELECT * FROM wp_posts
LEFT JOIN wp_term_relationships
ON wp_posts.ID = wp_term_relationships.object_ID
LEFT JOIN wp_terms
ON wp_terms.term_id = wp_term_relationships.term_taxonomy_id
WHERE wp_terms.name = 'x'
SELECT * FROM wp_posts
LEFT JOIN wp_term_relationships
ON wp_posts.ID = wp_term_relationships.object_ID
LEFT JOIN wp_terms
ON wp_terms.term_id = wp_term_relationships.term_taxonomy_id
WHERE wp_terms.name = 'x'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文