我正在尝试使用当前的帖子ID获取wordpress中的自定义字段值,但我无法获得。我在这里做的是我设置了名为'woo_id'的自定义字段的值,其中我存储了woo commerce的产品ID。我正在使用get_the_ID()函数来获取id。我是新来的商业和wordpress。以下是代码的片段。
$custom_fields = get_post_custom(get_the_ID());
$my_custom_field = $custom_fields['woo_id'];
foreach ( $my_custom_field as $key => $value ) {
echo do_shortcode('[add_to_cart id='.$value.' sku=""]');
}