我想在前端页面上显示特定用户角色的订单列表。
它可能与orders
页面上my account
标签中显示的订单列表相同,但所有订单都等于特定的用户角色。
如果可能的话,我想将其用作shortcode
。
我一直在寻找 this page 来获得订单,但是我找不到如何实现用户角色的方法。
我也不确定要创建shortcode
。
add_shortcode('your-shortcode', 'yourFunction');
function yourFunction(){
$args = array(
'customer_id' => 12,
);
$orders = wc_get_orders( $args );
}