使用自定义元数据wordpress显示特定帖子

时间:2015-09-29 15:12:01

标签: wordpress

我正在建立一个视频共享网站。每个视频/帖子都有特定的后期元素质..无论是高清还是高清......如何只显示高清视频/帖子?

我想只显示元数据质量= hd。

的帖子

1 个答案:

答案 0 :(得分:0)

$args = array(
        "post_type" => "-=your custom post type==-",
        "meta_query" => array (
            array (
              "key" => "quality",
              "value" => "hd",
              "compare" => "IN"
            )
          ) 
    );
$result = new WP_Query($args);

我使用该代码来获取某个键的结果。