Wordpress教程 2024年09月20日
0 收藏 0 点赞 179 浏览 1144 个字

// 为 Legacy CPT-based 订单添加自定义列
add_filter('manage_edit-shop_order_columns', 'wprs_add_custom_order_columns');

// 为 HPOS-based 订单添加自定义列
add_filter('manage_woocommerce_page_wc-orders_columns', 'wprs_add_custom_order_columns');

function wprs_add_custom_order_columns($columns) {
    // 在“总计”列之前添加自定义列
    $columns = array_slice($columns, 0, 4, true) // 4 列之前
    + array(
        'order_products' => __('购买产品', 'woocommerce') // 自定义列标题
    )
    + array_slice($columns, 4, NULL, true);

    return $columns;
}

// 为 Legacy CPT-based 订单显示自定义列数据
add_action('manage_shop_order_posts_custom_column', 'wprs_populate_custom_order_columns', 25, 2);

// 为 HPOS-based 订单显示自定义列数据
add_action('manage_woocommerce_page_wc-orders_custom_column', 'wprs_populate_custom_order_columns', 25, 2);

function wprs_populate_custom_order_columns($column_name, $order_or_order_id) {
    // 兼容 Legacy CPT-based 订单
    $order = $order_or_order_id instanceof WC_Order ? $order_or_order_id : wc_get_order($order_or_order_id);

    if ('order_products' === $column_name) {
        $items = $order->get_items();
        if (!is_wp_error($items)) {
            foreach ($items as $item_id => $item) {
                echo esc_html($item->get_quantity()) . ' × <a href="' . esc_url(get_edit_post_link($item->get_product_id())) . '" rel="external nofollow" >' . esc_html($item->get_name()) . '</a><br />';
            }
        }
    }
}

 

微信扫一扫

支付宝扫一扫

版权: 转载请注明出处:https://www.mizhanw.com/blog/4954.html

相关推荐
WordPress标签按拼音字母层级排序教程
此教程实现标签按拼音字母(A、B、C 等字母)层级排序,并在页面上添加一个侧边竖向字母导航 <?php /* Template Nam…
日期:2024-11-07 点赞:0 阅读:31
wordpress网站编辑器启隐藏的编辑器功能
如果开启WordPress隐藏的编辑器功能就够你用了,何必安装插件呢。 如何开启隐藏的编辑器功能 WordPress默认不支持TinyMCE…
日期:2024-10-29 点赞:0 阅读:43
在WooCommerce中添加“立即购买”按钮直接跳转到结算页面
add_action( 'woocommerce_after_add_to_cart_button', 'add_content_after…
日期:2024-10-19 点赞:0 阅读:64
实现 WordPress 自动更新所有文章的发布日期为当天的日期
//二开自动更新文章日期为当天发布。 //设置宝塔面板中的定时任务,通过访问带有?update_posts=run的链接触发文章更新.如:c…
日期:2024-09-22 点赞:0 阅读:90
WooCommerce订单列表显示购买产品
// 为 Legacy CPT-based 订单添加自定义列 add_filter('manage_edit-shop_order_colu…
日期:2024-09-20 点赞:0 阅读:179
WooCommerce Order 类的所有Get方法,以面向对象的方法获取订单数据
在开发WooCommerce插件或者与第三方系统交互时,我们需要获取 WooCommerce 订单的数据,WooCommerce的 WC_O…
日期:2024-09-20 点赞:0 阅读:183
发表评论
暂无评论

还没有评论呢,快来抢沙发~