web-dev-qa-db-ja.com

メタクエリの関係 "および"働いていません

このクエリは在庫品で表示されているだけで、このクエリを表示するだけです。

$query = array(
        'post_type' => 'product',
        'post_status' => 'publish',
        'posts_per_page' => 12,
        'orderby' => 'date',
        'order' => 'DESC',
        'meta_query' => array(
          'relation' => 'AND',
          array(
            'key' => '_stock_status',
            'value' => 'instock',
          ),
          array(
              'taxonomy' => 'product_visibility',
              'field' => 'name',
              'terms' => 'featured',
          ),
        ),
    );
 _
1
omid chahardoli

あなたはメタクエリと税務照会を混合しました

それはこのように見えるべきです

$query = array(
    'post_type' => 'product',
    'post_status' => 'publish',
    'posts_per_page' => 12,
    'orderby' => 'date',
    'order' => 'DESC',
    'meta_query' => array(
      array(
        'key' => '_stock_status',
        'value' => 'instock'
      )
    ),
    'tax_query' => array(
      array(
          'taxonomy' => 'product_visibility',
          'field' => 'name',
          'terms' => 'featured'
      )
    )
);
 _
1
Buttered_Toast