WooCommerce在页面上按短代码显示每个用户角色的订单

时间:2019-04-09 13:29:19

标签: woocommerce frontend shortcode orders user-roles

我想在前端页面上显示特定用户角色的订单列表。 它可能与orders页面上my account标签中显示的订单列表相同,但所有订单都等于特定的用户角色。

如果可能的话,我想将其用作shortcode

我一直在寻找 this page 来获得订单,但是我找不到如何实现用户角色的方法。 我也不确定要创建shortcode

add_shortcode('your-shortcode', 'yourFunction');
      function yourFunction(){
        $args = array(
            'customer_id' => 12,
        );
        $orders = wc_get_orders( $args );  
}

0 个答案:

没有答案