0

我有一个Custom Post Type使用Custom Post Type UI名为Case Studies. 我还使用Custom Fields向.capabilityCase Studies

如何查询等于某个 IDCase Studies的位置?capability

$query = array('post_type' => 'case-studies','posts_per_page' => 3);

到目前为止我的查询是

4

2 回答 2

3

它可能是

$query = array(
    'post_type' => 'case-studies',
    'meta_key' => 'capability',
    'meta_value' => 10, // some ID
    'posts_per_page' => 3
);

$the_query = new WP_Query( $query );
while ( $the_query->have_posts() ) : $the_query->the_post();
    // echo here
endwhile;
wp_reset_postdata();
于 2013-02-15T21:41:39.443 回答
0

您需要将您的密钥设置为功能,然后通过您的帖子 ID 查询值。

'meta_query' => array(
  array(
    'key' => 'capability',
    'value' => $post->ID,
    'compare' => 'example'
  )
)
于 2013-02-15T21:40:27.993 回答