web-dev-qa-db-ja.com

ウーコマースの在庫状況を取得する方法

ウーコマースのテーマでは、商品が在庫切れの場合に警告を表示しようとしています。このようなもの:

<?php if ('this_product_is_out_of_stock'): ?>
    <p>This product is out of stock. It can be purchased by custom made order.</p>
<?php endif; ?>

'this_product_is_out_of_stock'と言う機能、またはそれを達成するための他の方法はありますか?

Woocommerceのapiドキュメントを検索できなかった: https://docs.woocommerce.com/wc-apidocs/ /

前もって感謝します。

3
aitor

このようなことを試してください

    global $product;
    if ( ! $product->managing_stock() && ! $product->is_in_stock() )
    echo '<p>This product is out of stock. It can be purchased by custom made order.</p>';
6
Alvin Zachariah