gpt4 book ai didi

wordpress - 向 Woocommerce 管理订单页面添加一个新 block

转载 作者:行者123 更新时间:2023-12-04 04:17:35 25 4
gpt4 key购买 nike

我想在 Woocommerce 管理订单页面中创建一个自定义表块。
正如您在屏幕截图中看到的,我使用了:

add_action( 'woocommerce_admin_order_data_after_order_details', 'vp_admin_order_table' );

我想要的是创建一个单独的块,里面有这个表。

是否有任何操作可以触发订单详细信息和产品列表之间的差距?

enter image description here

最佳答案

试试这个代码:

function op_register_menu_meta_box() {
add_meta_box(
'Some identifier of your custom box',
esc_html__( 'Box Title', 'text-domain' ),
'render_meta_box',
'shop_order', // shop_order is the post type of the admin order page
'normal', // change to 'side' to move box to side column
'low' // priority (where on page to put the box)
);
}
add_action( 'add_meta_boxes', 'op_register_menu_meta_box' );

function render_meta_box() {
// Metabox content
echo '<strong>Your awesome content goes here</strong>';
}

请记住在订单页面的“屏幕选项”下设置为可见的框。

进一步阅读:
  • https://developer.wordpress.org/reference/functions/add_meta_box/
  • https://codex.wordpress.org/Plugin_API/Action_Reference/add_meta_boxes
  • 关于wordpress - 向 Woocommerce 管理订单页面添加一个新 block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60306046/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com