在wpallexport中显示“高级自定义”字段

时间:2019-03-29 07:29:45

标签: wordpress woocommerce export advanced-custom-fields

我想导出“高级”自定义字段,因此我在wpallexport中使用了“函数编辑器”,但没有显示任何内容。 我为woocommerce(wirtschaftlicher_eigentumer)中的产品创建了一个ACF字段,我试图通过product_id来获取它,但是什么也没有出现。

function wirtschaftlicher_eigen ($product_id) {
    if ( ! empty($product_id) ) {
        return get_field('wirtschaftlicher_eigentumer', 'product_' . $product_id);
    }
}

想要获取该字段,但它为空。

1 个答案:

答案 0 :(得分:0)

您需要更改

return get_field('wirtschaftlicher_eigentumer', 'product_' . $product_id);

收件人

return get_field('wirtschaftlicher_eigentumer', $product_id);

$product_id将返回当前帖子ID。