Özel bir yazı türü "Liste" var ve ben özel bir alana sahip tüm Listeleri almak gateway_value != 'Yes'
ve sonuçları başka bir özel alana göre sipariş etmek istiyorum location_level1_value
. Sorguları ayrı ayrı çalıştırabilirim, ancak bunları birleştiremiyorum:
Sorgu 1 (konuma göre sırala):
$wp_query = new WP_Query( array (
'post_type' => 'listing',
'post_status' => 'publish',
'posts_per_page' => '9',
'meta_key' => 'location_level1_value',
'orderby' => 'location_level1_value',
'order' => 'ASC',
'paged' => $paged
)
);
Sorgu 2 (özel alan değeri! = Evet):
$wp_query = new WP_Query( array (
'post_type' => 'listing',
'posts_per_page' => '9',
'post_status' => 'publish',
'meta_key' => 'gateway_value',
'meta_value' => 'Yes',
'meta_compare' => '!=',
'paged' => $paged
)
);
Birleşik sorgu:
Bu konuda yardım için codex baktım , ancak aşağıdaki sorgu çalışmıyor:
$wp_query = new WP_Query( array (
'post_type' => 'listing',
'posts_per_page' => '9',
'post_status' => 'publish',
'meta_query' => array(
array(
'key' => 'gateway_value',
'value' => 'Yes',
'compare' => '!='
),
array(
'key' => 'location_level1_value'
)
),
'orderby' => "location_level1_value",
'order' => 'ASC',
'paged' => $paged
)
);
Birleşik sorguda neyi yanlış yapıyorum?
[GÜNCELLEME]: Şimdi 3.1 yayınlandı, yukarıdaki birleştirilmiş sorgu hala çalışmıyor. Sonuçları doğru şekilde sıralamıyorum.
[UPDATE]: var_dump($wp_query->request)
aşağıdakileri verir:
string(527) " SELECT SQL_CALC_FOUND_ROWS wp_7v1oev_posts.* FROM wp_7v1oev_posts
INNER JOIN wp_7v1oev_postmeta ON (wp_7v1oev_posts.ID = wp_7v1oev_postmeta.post_id)
INNER JOIN wp_7v1oev_postmeta AS mt1 ON (wp_7v1oev_posts.ID = mt1.post_id) WHERE 1=1 AND wp_7v1oev_posts.post_type = 'listing' AND (wp_7v1oev_posts.post_status = 'publish') AND wp_7v1oev_postmeta.meta_key = 'gateway_value' AND CAST(wp_7v1oev_postmeta.meta_value AS CHAR) != 'Yes' AND mt1.meta_key = 'location_level1_value' ORDER BY wp_7v1oev_posts.post_date DESC LIMIT 0, 9"
meta_query
Parametre çok yakında serbest bırakıldı, ama mevcut kararlı sürümü bu parametre olmadan hala 3.0.5 olduğunu gereken ve 3.1 yenidir.