私はwoocommerce用のカスタムテーマを作成しており、ミニ製品のディスプレイを作成する必要があります。私は、woocommerce apiのドキュメントを見つけるのに問題があります。私は反復処理に必要なプロダクトIDのカンマ区切りリストを持っていて、それぞれのカスタムミニ製品の表示を順番に表示します。WooCommerce 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;
}
助けてください。
は
ティム
Woocommerceのドキュメントは、通常、本当の説明 –