WooCommerce return product object by id

前端 未结 4 1539
伪装坚强ぢ
伪装坚强ぢ 2020-12-29 18:39

I am creating a custom theme for woocommerce and I need to be able to create a mini product display. I am having problems finding documentation on the woocommerce api. I hav

4条回答
  •  离开以前
    2020-12-29 18:55

    Use this method:

    $_product = wc_get_product( $id );
    

    Official API-docs: wc_get_product

提交回复
热议问题