按meta_value和meta_key过滤

时间:2017-08-01 08:41:56

标签: php wordpress

我想按meta_key和meta_value过滤我的结果。

我有一个视频分享网站,我想将结果过滤为罗马尼亚视频。

我尝试使用此代码:

query_posts( array('post_type' => array('episodes'), 'meta_key' => 'idioma', 'meta_value' => 'td','meta_compare' => 'IN'));

但是,我想用meta_key idioma和meta_value与TD显示结果。

这是我的数据库:

https://prnt.sc/g2u38e

我试着用这个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
  );

但它没有用。

1 个答案:

答案 0 :(得分:1)

sql or jpql.