我正在尝试获取带有标题元值的最新帖子,但它给了我最新的帖子。这是我的查询,我做错了什么?
$querydetails = "
SELECT $wpdb->posts.*
FROM $wpdb->posts, $wpdb->postmeta
WHERE $wpdb->posts.ID = $wpdb->postmeta.post_id
AND $wpdb->postmeta.meta_value = 'headline'
AND $wpdb->postmeta.meta_key = 'custom_select'
AND $wpdb->posts.post_status = 'publish'
AND $wpdb->posts.post_type = 'post'
ORDER BY $wpdb->posts.post_date DESC
LIMIT 1
";
$headline = $wpdb->get_results($querydetails, OBJECT);