如何在我的WooCommerce账户下回复账单电话号码? 时间:2015-11-19 作者:tushonline 我们希望得到客户的billing_phone 编号(&A);然后把它放在“我的帐户”或“我的地址”部分。这样,我们的计费支持可以从前端查找要呼叫的号码,而不必导航到订单管理。已尝试使用phone\' => get_user_meta( $customer_id, $name . \'_phone\', true ) 在我的地址。php,但这不起作用。有线索吗?非常感谢。 1 个回复 最合适的回答,由SO网友:TheDeadMedic 整理而成 你很接近-只需要调整你的论点:<?php echo get_user_meta( $customer_id, \'billing_phone\', true ) ?> 只要确定一下$customer_id 是用户的ID-您可能需要get_current_user_id() 相反 文章导航