我有一个属性:
- 名称(标签): Package 盒尺寸
- 炉渣:箱型
我试了这个代码:
$attribute_slug = 'pa_box-size';
// Get the term object based on the attribute slug
$term = get_term_by('slug', $attribute_slug, 'pa');
if ($term) {
$attribute_label = $term->name; // Attribute label
$attribute_id = $term->term_id; // Attribute ID
// Output the attribute label and ID
echo 'Attribute Slug: ' . $attribute_slug . '<br>';
echo 'Attribute Label: ' . $attribute_label . '<br>';
echo 'Attribute ID: ' . $attribute_id;
} else {
echo 'Attribute not found: ' . $attribute_slug;
}
但总是得到“属性未找到:pa_box-size”。
2条答案
按热度按时间2skhul331#
我用这个解决了我的问题:
来源:wordpress.stackexchange.com
所以我只需要一个IF语句来检查一个特定的属性。
jchrr9hc2#