如何使用wordpress功能获取变体标题

时间:2018-10-06 04:34:43

标签: php wordpress woocommerce

我将使用选项创建一个下拉菜单,其中可以显示varaiation_id和variation_title,我必须获取其他一些变化的详细信息,例如variation_is_active,variation_is_visible等。但是我没有得到变化标题,请给我答案,在这里显示代码

isdigit()

2 个答案:

答案 0 :(得分:1)

变体产品本身没有标题,而是使用其父标题。

如果要获取父产品的标题,可以使用get_the_title(),或者如果要为标题附加一些html代码,则可以在循环中使用the_title();

有关这两个功能的更多信息,请检查以下链接:

Reference get_the_title

Reference the_title

答案 1 :(得分:0)

您需要使用WC_Product_Variation_Class https://docs.woocommerce.com/wc-apidocs/class-WC_Product_Variation.html

那么您就可以使用了

$product->get_title( )

Get the product's title. For variations this is the parent product name.