在Woocommerce的管理订单页面上添加城市下拉列表

问题描述 投票:1回答:1

我想在woocommerce的新订单页面中添加城市下拉列表,我知道将此功能添加到结帐页面,但在这里我想将此功能添加到Woocommerce的管理新订单页面。

请参阅示例图像以供参考:See example image for reference

php wordpress woocommerce admin orders
1个回答
1
投票

使用以下钩子函数进行管理新订单(您将设置城市数组):

add_filter( 'woocommerce_admin_billing_fields' , 'admin_billing_city_select_field' );
function admin_billing_city_select_field( $fields ) {
    global $pagenow;

    // Only for new order creation
    if( $pagenow != 'post-new.php' ) return $fields;

    $fields['city'] = array(
        'label'   => __( 'City', 'woocommerce' ),
        'show'    => false,
        'class'   => 'js_field-city select short',
        'type'    => 'select',
        'options' => array(
            ''              => __( 'Select a city…', 'woocommerce' ),
            'Los Angeles'   => __( 'Los Angeles', 'woocommerce' ),
            'San Antonio'   => __( 'San Antonio', 'woocommerce' ),
        ),
    );

    return $fields;
}

代码位于活动子主题(或活动主题)的function.php文件中。经过测试和工作。

enter image description here

如果您希望它也适用于管理编辑订单页面,您将删除以下行:

if( $pagenow != 'post-new.php' ) return $fields;

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.