add_section('footer_customizer', array( 'title' => __( 'Footer', 'atlantisak'), 'priority' => 4, 'description' => __('Customize Your Footer', 'atlantisak'), 'panel' => 'atlantisAk_customize', )); //footer background image settings and control $wp_customize->add_setting('footer_background_img', [ 'default' => '', 'sanitize_callback' => 'atlantisak_sanitize_file', ]); $wp_customize->add_control(new WP_Customize_Image_Control($wp_customize, 'footer_background_img', [ 'label' => __( 'Background Image', 'atlantisak'), 'setting' => 'footer_background_img', 'section' => 'footer_customizer', ])); //footer background color settings and control $wp_customize->add_setting('footer_background_color', [ 'default' => '#000000', 'sanitize_callback' => 'sanitize_hex_color' ]); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'footer_background_color', [ 'label' => __('Background Color', 'atlantisak'), 'setting' => 'footer_background_color', 'section' => 'footer_customizer', ])); //footer title color settings and control $wp_customize->add_setting('footer_title_color', [ 'default' => '#fff', 'sanitize_callback' => 'sanitize_hex_color' ]); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'footer_title_color', [ 'label' => __('Footer Title Color', 'atlantisak'), 'setting' => 'footer_title_color', 'section' => 'footer_customizer' ])); //footer short description textarea $wp_customize->add_setting('footer_description', [ 'default' => __('Lorem ipsum dolor adipisicing amet, consectetur sit elit. Aspernatur incidihil quo officia.', 'atlantisak'), 'sanitize_callback' => 'wp_filter_nohtml_kses' ]); $wp_customize->add_control('footer_description', [ 'label' => __('Footer Description', 'atlantisak'), 'type' => 'textarea', 'setting' => 'footer_descripton', 'section' => 'footer_customizer' ]); //footer description color $wp_customize->add_setting('footer_description_color', [ 'default' => '#fff', 'sanitize_callback' => 'sanitize_hex_color' ]); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'footer_description_color', [ 'label' => __('Description Color', 'atlantisak'), 'setting' => 'footer_description_color', 'section' => 'footer_customizer' ])); //copyright $wp_customize->add_setting('footer_copyright', [ 'default' => '', 'sanitize_callback' => 'wp_filter_nohtml_kses' ]); $wp_customize->add_control('footer_copyright',[ 'label' => __('Footer Copyright', 'atlantisak'), 'type' => 'textarea', 'settting' => 'footer_copyright', 'section' => 'footer_customizer' ]); //copyright color $wp_customize->add_setting('footer_copyright_color', [ 'default' => '', 'sanitize_callback' => 'sanitize_hex_color' ]); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'footer_copyright_color', [ 'label' => __('Copyright Color', 'atlantisak'), 'setting' => 'footer_copyright_color', 'section' => 'footer_customizer' ])); }