无法在woocommerce中添加自定义选择字段

时间:2015-08-26 04:51:09

标签: wordpress woocommerce

我想在结帐页面添加自定义字段options。我使用以下代码:

$fields['billing']['billing_options'] = array(
    'label'       => __('Options', 'woocommerce'),
    'placeholder' => _x('', 'placeholder', 'woocommerce'),
    'required'    => false,
    'clear'       => false,
    'type'        => 'select',
    'options'     => array(
        'option_a' => __('option a', 'woocommerce' ),
        'option_b' => __('option b', 'woocommerce' )
        )
    );

我想从数据库或显示选项(option_a,option_b) 我想使用动态数据,并希望在for loop菜单中使用options

如何在此函数中使用for循环?

1 个答案:

答案 0 :(得分:2)

以前就这样做,就像这样:

add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' );

function my_custom_checkout_fields( $fields ) {

    $args = array(                                                                  
        'post_type'         => array('options'),                                    
        'posts_per_page'    => -1                                                           
    );                                                                              

    $posts = new WP_Query($args);
    $options = array();        

    foreach ($posts as $post) {  
        $options[$post->ID] => attr_esc($post->post_title);
    }

    $fields['billing']['billing_options'] = array(
        'label'       => __('Options', 'woocommerce'),
        'placeholder' => _x('', 'placeholder', 'woocommerce'),
        'required'    => false,
        'clear'       => false,
        'type'        => 'select',
        'options'     => $options
    );
    return $fields;
}