I’m trying to use $wpdb->get_results
to retrieve an array of all posts including custom fields. I can retrieve the meta_key and meta_value columns like this:
[meta_key] => state [meta_value] => california
but I’m trying to list them in the object like this:
[meta_key] => meta_value [state] => california [city] => san francisco
The Query:
global $wpdb;
$query = "
SELECT ID, post_date, post_title, post_content, guid, meta_key, meta_value
FROM wp_posts INNER JOIN wp_postmeta
ON (wp_posts.ID = wp_postmeta.post_id)
";
$results = $wpdb->get_results($query);
foreach($results as $result) {
print_r($result);
}
Is it possible to use an alias and/or subquery to achieve this?
SELECT ID, post_date, post_title, post_content, guid, meta_value AS (subquery here??)
Note, before going further: Take care about portability and security:
Just for clarity, to not get the extra quotes that benhass was talking about (i still get them with the code provided by kaiser and WP 3.7.1), don’t use the prepare method at all (ok in this case, as we only use parameters provided by the $wpdb object itself):
But of course, REMEMBER, as soon as you use other parameters in the query, the use of $wpdb->prepare is recommended to prevent SQL injection.