如何获取WooCommerce库存状态

时间:2016-09-04 作者:aitor

在woocommerce主题中,我试图在产品缺货时发出警告。类似这样:

<?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\\u product\\u Is\\u out\\u of\\u stock”或其他方式来实现它?

我搜索woocommerce api文档失败:https://docs.woocommerce.com/wc-apidocs/

提前谢谢你。

1 个回复
最合适的回答,由SO网友:Alvin Zachariah 整理而成

试试这样的

    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>\';

相关推荐

如何在Functions.php中链接style.css

我是WordPress的新手;我刚开始学习WordPress。我想把风格联系起来。函数中的css。php,但我无法解决这里可能存在的问题。谁能给我指出正确的方向吗?指数php<?php get_header(); ?> <?php if ( have_posts() ) { while ( have_posts() ) { the_post();