web-dev-qa-db-ja.com

WP_QueryでWooCommerceの注目製品を入手する

私はWooCommerceをバージョン3.0に更新しましたが、テーマにフィーチャーされた製品を表示できません。しばらくグーグルすると、WCが_featureを削除して分類に追加しました。しかし、私のテーマがどのように注目の製品を獲得するのか、私はあまり理解していません。

これは、間違った機能の製品のコードです。

$meta_query   = WC()->query->get_meta_query();
    $meta_query[] = array(
        'key'   => '_featured',
        'value' => 'yes'
    );

    $args = array(
        'post_type'           => 'product',
        'post_status'         => 'publish',
        'ignore_sticky_posts' => 1,
        'posts_per_page'      => $products,
        'orderby'             => $orderby,
        'order'               => $order == 'asc' ? 'asc' : 'desc',
        'meta_query'          => $meta_query
    );

そして、あなたがデータベースの注目のアイテムがどこにあるか知っているなら。本当にありがとう。

7
Armando García

Woocommerce 3以降では、代わりにTax Queryを使用する必要があります。注目の製品が_product_visibility_custom taxonomyfor the termfeatured

_// The tax query
$tax_query[] = array(
    'taxonomy' => 'product_visibility',
    'field'    => 'name',
    'terms'    => 'featured',
    'operator' => 'IN', // or 'NOT IN' to exclude feature products
);

// The query
$query = new WP_Query( array(
    'post_type'           => 'product',
    'post_status'         => 'publish',
    'ignore_sticky_posts' => 1,
    'posts_per_page'      => $products,
    'orderby'             => $orderby,
    'order'               => $order == 'asc' ? 'asc' : 'desc',
    'tax_query'           => $tax_query // <===
) );
_

参照:

wc_get_featured_product_ids() function を使用して注目の製品ID配列を取得できますが、tax query_WP_Query_で問題ありませんと正しい方法…

関連:

うまくいくはずです。

19
LoicTheAztec

これは古い質問ですが、 wc_get_featured_product_ids() も使用できます。

$args = array(
    'post_type'           => 'product',
    'posts_per_page'      => $products,
    'orderby'             => $orderby,
    'order'               => $order == 'asc' ? 'asc' : 'desc',
    'post__in'            => wc_get_featured_product_ids(),
);

$query = new WP_Query( $args );

ここで発見しました。お役に立てば幸いです。

4
Felipe Elia
    $args = array(
        'post_type' => 'product',
        'posts_per_page' => 12,
        'tax_query' => array(
                array(
                    'taxonomy' => 'product_visibility',
                    'field'    => 'name',
                    'terms'    => 'featured',
                ),
            ),
        );
    $loop = new WP_Query( $args );
    if ( $loop->have_posts() ) {
        while ( $loop->have_posts() ) : $loop->the_post();
            wc_get_template_part( 'content', 'product' );
        endwhile;
    } else {
        echo __( 'No products found' );
    }
    wp_reset_postdata();
3
Sneh