- 21, Oct 2024
- #1
В настоящее время я создаю тему для сайта, который использует
get_post()
to provide a Shop to Customers. I have just started on it, and I am currently working on the Product Category pages. I have hit a road block trying to fetch the WooCommerce Product object.
Я прочитал это, используя переменную
post_description
should return the WC_Product object, but when I do post_name
, var_dump($product)
is returned.
Затем я попытался создать объект Product, выполнив
the_post(); $product = new WC_Product(get_the_ID())
, but when I did the NULL
при этом он дал мне общую информацию о продукте ( the_post(); var_dump($product)
, global $product
и т. д.), но не более того, если бы я позвонил WooCommerce
.
Может кто-нибудь сказать мне, что я пропустил, пожалуйста?
#плагины