将数据放入My-Account/View-Order/id/页面

时间:2017-06-17 作者:Salvio

是否有过滤器或操作将信息放在订单状态信息之后“订单详细信息”标题之前?

我找到了“woocommerce\\u view\\u order”操作,但它会将所有内容放在页面底部。

1 个回复
SO网友:itzmekhokan
add_action( \'woocommerce_view_order\', \'before_woocommerce_order_details\', 5 );
function before_woocommerce_order_details($order_id){
  $order = new WC_Order($order_id);
  echo "Order Status : ".$order->get_status();
}
结束

相关推荐

是否忽略/跳过ORDERBY MENU_ORDER上的默认值?

是否有办法查询所有页面并按顺序排序menu_order but 忽略默认值为0?我试着这样做: $the_query = array( \'post_type\' => self::POST_TYPE, \'posts_per_page\' => $total, \'product_cat\' => $product_category_name,