这是我的代码,我在产品编辑页面中添加了自定义属性。 一个属性,例如,名称:id值:3421
这是我的代码:
<?php
$size = sizeof( get_the_terms( $post->ID, 'product_tag' ) );
echo $product->get_tags( ', ', '<span class="tagged_as">' . _n( 'Tag:', 'Tags:', $size, 'woocommerce' ) . ' ', '.</span>' );
global $product;
$attributes = $product->get_attributes();
echo 'Enter Id Here';
?>
我回显enter id here
的地方我想要显示id。
我厌倦了从我创建的属性变量中获取id并且它没有工作。
有什么建议吗?
答案 0 :(得分:1)
试试这个:
$result = array_shift(woocommerce_get_product_terms($product->id, 'pa_koostis', 'names'));