WooCommerce;根据自定义字段列出前端的订单

时间:2019-04-23 09:39:42

标签: list woocommerce frontend custom-fields orders

我想显示基于“自定义订单”字段的订单列表。 另外,我希望能够通过使用短代码将此列表添加到前端。

我试图将一些不同的代码放在一起,但实际上我不知道自己在做什么。任何帮助将不胜感激。

   add_shortcode('your-shortcode', 'yourFunction');
        function yourFunction(){
          $args = array(
            $custom_field = get_post_meta( $order_id, 'Value Customfield', true );
          $orders = wc_get_orders( $args );  
  }

0 个答案:

没有答案