web-dev-qa-db-ja.com

WooCommerceはIDで製品オブジェクトを返します

Woocommerce用のカスタムテーマを作成していますが、ミニ製品ディスプレイを作成できる必要があります。 woocommerce apiでドキュメントを見つけるのに問題があります。製品IDのコンマ区切りのリストがあり、それを反復処理して、それぞれのカスタムミニ製品ディスプレイを順番に表示する必要があります。

$key_values = get_post_custom_values('rel_products_ids');
//get comma delimited list from product

$rel_product_ids = explode(",", trim($key_values, ",")); 
// create array of just the product ids

foreach ( $rel_product_ids as $pid ) { 
    //sequentially get each id and do something with it

    $loop = new WP_Query( array( 'post__in' => $pid ) );
    // also tried ...
    //$loop = new WP_Query( array( 'ID' => $pid ) );

    while ( $loop->have_posts() ) : $loop->the_post(); $_product = &new WC_Product( $loop->post->ID );
        //do stuff here I have stripped the html in favor of getting to the meat of the issue
        woocommerce_show_product_sale_flash( $post, $_product );
        if (has_post_thumbnail( $loop->post->ID )) echo get_the_post_thumbnail($loop->post->ID, 'shop_single');
        get_permalink( $loop->post->ID );
        the_title(); 
        $_product->get_price_html();
    endwhile;
}

任意の助けをいただければ幸いです。

ありがとうございました、

ティム

34
mpactMEDIA

別の簡単な方法は、WC_Product_Factoryクラスを使用してから関数get_product(ID)を呼び出すことです

http://docs.woothemes.com/wc-apidocs/source-class-WC_Product_Factory.html#16-6

サンプル:

// assuming the list of product IDs is are stored in an array called IDs;
$_pf = new WC_Product_Factory();  
foreach ($IDs as $id) {

    $_product = $_pf->get_product($id);

    // from here $_product will be a fully functional WC Product object, 
    // you can use all functions as listed in their api
}

その後、APIにリストされているすべての関数呼び出しを使用できます。 http://docs.woothemes.com/wc-apidocs/class-WC_Product.html

57
Jacky Mok

この方法を使用します。

$_product = wc_get_product( $id );

公式APIドキュメント: wc_get_product

72
Unicco

申し分なく、私は絞られるに値する。間違いなくRTMが、WooCommerce、Wordpress向けではありません。JOLTコーラ(すべてJOLTコーラ)が原因で解決策が見つかりました。

タスク:「related_product_ids」という名前のフィールドがカスタム投稿タイプに追加されました。そのため、その投稿が表示されると、ミニ商品のディスプレイを表示できます。

問題:WP_Queryを介して返される複数のIDの取得に問題がありました。

解決:

$related_id_list          = get_post_custom_values('related_product_ids');
    // Get comma delimited list from current post
$related_product_ids      = explode(",", trim($related_id_list[0],','));
    // Return an array of the IDs ensure no empty array elements from extra commas
$related_product_post_ids = array( 'post_type' => 'product', 
                                   'post__in'  => $related_product_ids,
                                   'meta_query'=> array( 
                                        array( 'key'    => '_visibility',
                                               'value'  => array('catalog', 'visible'),'compare' => 'IN'
                                        )
                            ) 
);      
    // Query to get all product posts matching given IDs provided it is a published post
$loop = new WP_Query( $related_posts );
    // Execute query
while ( $loop->have_posts() ) : $loop->the_post(); $_product = get_product( $loop->post->ID );
    // Do stuff here to display your products 
endwhile;

これに少し時間を費やしてくれた人に感謝します。

ティム

4
mpactMEDIA
global $woocommerce;
var_dump($woocommerce->customer->get_country());
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
    $product = new WC_product($cart_item['product_id']);
    var_dump($product);
}
1
Mr X