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

时间:2018-09-19 03:51:59

标签: php wordpress woocommerce admin orders

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

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

1 个答案:

答案 0 :(得分: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