我有一个WP网站,我在WP安装之外还有一些php页面,我需要查询为我的WP站点提供支持的数据库。我有一个有效的查询,但它没有显示我真正需要的输出。
这两个表是wp_posts和wp_postmeta
wp_posts
ID
post_author
post_date
post_date_gmt
post_content
post_title
post_excerpt
post_status
comment_status
pint_status
post_password
post_name
to_ping
pinged
post_modified
post_modified_gmt
post_content_filtered
post_parent
guid
menu_order
post_type
post_mine_type
comment_count
wp_postmeta
meta_id
post_id
meta_key
meta_value
这些是显示发布帖子的查询:
$query = "SELECT post_title, post_name FROM wp_posts WHERE post_type = 'post' AND post_status = 'publish' ORDER BY post_date DESC LIMIT 5";
这些是使用meta_key ='_ wp_attached_file'显示的查询
$query ="SELECT post.ID, post.post_title, post.post_excerpt, post.post_content, meta.meta_value FROM wp_posts AS post INNER JOIN wp_postmeta AS meta ON meta.post_id = post.id AND meta.meta_key = '_wp_attached_file' ";
我想要的是将这两个查询结合起来显示post_status ='publish'和meta_key ='_ wp_attached_file'
这是我的查询示例,但没有显示值
<?php
$query ="SELECT post.ID, post.post_title, post.post_excerpt, post.post_content, meta.meta_value FROM wp_posts AS post INNER JOIN wp_postmeta AS meta ON meta.post_id = post.id AND meta.meta_key = '_wp_attached_file' WHERE post_type = 'post' AND post_status = 'publish' ORDER BY post_date DESC LIMIT 5 ";
$result = mysql_query($query,$link);
if(mysql_num_rows($result)) {
while($post = mysql_fetch_object($result)) {
echo "$post->meta_value";
echo "$post->post_title";
echo "$post->post_content";
}
}
?>
非常感谢你们......
另一个问题,它只显示1个帖子而不是最新帖子
这是我更新的代码
<?php
$con = mysql_connect("localhost", "root", "");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
$db_selected = mysql_select_db("wp_db",$con);
$sql = "SELECT
posts.ID,
posts.post_title AS title,
posts.post_content AS content,
files.meta_value AS filepath
FROM
wp_posts posts
INNER JOIN wp_posts attachments ON posts.ID = attachments.post_parent
INNER JOIN wp_postmeta files ON attachments.ID = files.post_id
WHERE 1 = 1
AND files.meta_key = '_wp_attached_file'";
$result = mysql_query($sql,$con);
while ($row = mysql_fetch_object($result))
{
echo $row->title . "<br />";
}
mysql_close($con);
?>
我的代码出了什么问题..谢谢你的帮助,非常感谢你......
答案 0 :(得分:2)
您好 @idontknowhow :
您的问题似乎是关于WordPress数据库架构的无效假设。 WordPress将其附件存储为post_type='attachment'
。运行此查询以查看我的意思:
SELECT
wp_posts.ID,
wp_posts.post_type
FROM
wp_posts
INNER JOIN wp_postmeta ON wp_posts.ID = wp_postmeta.post_id
WHERE 1 = 1
AND wp_postmeta.meta_key = '_wp_attached_file'
wp_posts
中post_type='attachment'
的记录通常会'post_status='inherit'
而“post_parent
”等于您帖子的ID
字段值。
现在我没有完全遵循你想要完成的事情。您提到了您遇到的技术问题,但没有提到您尝试实现的实际结果。在不知道后者的情况下,我很难确认我理解你的问题。所以我可能误解了你在寻找什么,但我认为这就是你想要的:
SELECT
posts.ID,
posts.post_title AS title,
posts.post_content AS content,
files.meta_value AS filepath
FROM
wp_posts posts
INNER JOIN wp_posts attachments ON posts.ID = attachments.post_parent
INNER JOIN wp_postmeta files ON attachments.ID = files.post_id
WHERE 1 = 1
AND files.meta_key = '_wp_attached_file'
但是在WordPress世界中使用直接SQL是不受欢迎的;相反,如果它提供了您所需要的,则使用WordPress API是首选。这件事情是由很多原因导致的;即如果未来的WordPress版本更改数据库模式以及因为WordPress执行大量数据缓存以避免破坏,因此在日常使用中可能更不会使用直接SQL并使用WordPress API。
但是,使用WordPress API解决您的问题并非100%直截了当,尽管可以这样做。如果您想看看我如何建议在StackOverflow的姐妹网站WordPress Answers询问哪些WordPress爱好者可以提供帮助?
希望这有帮助。
-Mike
P.S。我发现很多关于在StackOverflow上查询WordPress数据库的问题让人们试图回答它们,即使他们缺乏WordPress数据库模式的知识,更重要的是,他们不知道WordPress API。这里的人们非常了解MySQL,但通常不太了解WordPress,无法对WordPress相关问题给出正确答案。 WordPress Answers可能是一个提问WordPress问题的好地方。
答案 1 :(得分:0)
您的查询看起来是正确的。
您确定已发布了_wp_attached_file
的帖子吗?
上述查询的输出是否有任何常见记录?
答案 2 :(得分:0)
您是否尝试过滤WHERE
上的meta.meta_key?这样的事情:
SELECT post.ID, post.post_title, post.post_excerpt,
post.post_content, meta.meta_value
FROM wp_posts AS post
INNER JOIN wp_postmeta AS meta ON meta.post_id = post.id
WHERE meta.meta_key = '_wp_attached_file'
AND post.post_type = 'post'
AND post.post_status = 'publish'
ORDER BY post.post_date DESC
LIMIT 5;