我想通過meta_key和meta_value篩選我的結果。通過meta_value和meta_key進行篩選
我有一個視頻共享網站,我想過濾結果只是在羅馬尼亞視頻。
我嘗試使用此代碼:
query_posts(array('post_type' => array('episodes'), 'meta_key' => 'idioma', 'meta_value' => 'td','meta_compare' => 'IN'));
不過,我想只顯示與meta_key idioma
和meta_value與TD
的結果。
這是我的數據庫:
我嘗試用這個ARG:
$args = array(
'post_type' => 'array ('episodes')', // Here is the type of posts, you told me I'm on array ('episodes')
'post_status' => 'publish', // If you have a post status, I assumed you would publish
'orderby' => 'td', // Ordered after meta_value and after meta_key
'meta_key' => 'idioma', // Custom meta_key name
'order'=> 'DESC' // sort descending
);
但它不工作。
看看http://php.net/manual/en/function.array-filter.php – Pete