wordpress query
How do 开发者_如何学CI query posts from a category using more than 1 custom key/value pair?
$query = "SELECT * FROM dishes " ;
$return = $db->query( $query ) ;
You can include postmeta several times.
$querystr = "
SELECT wposts.*
FROM $wpdb->posts wposts,
$wpdb->postmeta wpostmeta1,
$wpdb->postmeta wpostmeta2
WHERE wposts.ID = wpostmeta1.post_id
AND wposts.ID = wpostmeta2.post_id
AND wpostmeta1.meta_key = 'tag'
AND wpostmeta1.meta_value = 'email'
AND wpostmeta2.meta_key = 'anothertag'
AND wpostmeta2.meta_value = 'anothervalue'
AND wposts.post_status = 'publish'
AND wposts.post_type = 'post'
ORDER BY wposts.post_date DESC
";
$pageposts = $wpdb->get_results($querystr, OBJECT);
There's lots of information about this here
For example...
$querystr = "
SELECT wposts.*
FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta
WHERE wposts.ID = wpostmeta.post_id
AND wpostmeta.meta_key = 'tag'
AND wpostmeta.meta_value = 'email'
AND wposts.post_status = 'publish'
AND wposts.post_type = 'post'
ORDER BY wposts.post_date DESC
";
$pageposts = $wpdb->get_results($querystr, OBJECT);
精彩评论