【发布时间】:2017-07-06 07:07:15
【问题描述】:
我想收集并保存在 Woocommerce 中提交结帐表单的当前用户的 Wordpress 个人资料照片。我会通过隐藏的结帐字段来实现这一点。这是我到目前为止所拥有的。不知道如何获取当前用户的头像并输出隐藏照片:
add_action( 'woocommerce_after_order_notes', 'my_custom_checkout_hidden_field', 10, 1 );
function my_custom_checkout_hidden_field( $checkout ) {
// Get an instance of the current user object
$user = wp_get_current_user();
// Profile photo
// Output hidden photo
}
【问题讨论】:
标签: php wordpress woocommerce hook-woocommerce