add_section( $name_section, array( 'title' => __( 'Content', 'aible' ), 'description' => '', 'priority' => 93, ) ); $arr_field = array( 'bws_bg_content_color' => array( 'default' => '#333333', 'name_control' => 'WP_Customize_Color_Control', 'label' => 'Background Color' ), 'bws_bg_content_img' => array( 'default' => '', 'name_control' => 'WP_Customize_Image_Control', 'label' => 'Background Image' ), 'bws_bg_content_property' => array( 'default' => 'scroll', 'name_control' => array( 'object' => 'WP_Customize_Control', 'type' => 'select', 'choices' => array( 'scroll' => __( 'Scroll', 'aible' ), 'fixed' => __( 'Fixed', 'aible' ) ) ), 'label' => __( 'Background Image Property', 'aible' ) ) ); $BwsCustomize = new BwsCustomize(); foreach ( $arr_field as $field_name => $val ) { $BwsCustomize->create_filed_customize( $wp_customize, $field_name, $val['default'], $val['name_control'], $val['label'], $name_section ); }