add_section('logo',array( 'title' => __('Change logo','bloggyfourteen'), 'description' => __('Change, hide or show logo.','bloggyfourteen'), 'priority' => '36', )); $wp_customize->add_setting('logo_setting[logo_show]',array( 'default' => root.'/img/logo.png', 'type' => 'option' )); $wp_customize->add_control('logo_setting[logo_show]',array( 'label' => __('Display Logo?','bloggyfourteen'), 'section' => 'logo', 'settings' => 'logo_setting[logo_show]', 'type' => 'checkbox' )); $wp_customize->add_setting('logo_setting[logo_img]',array( 'default' => root.'/img/logo.png', 'type' => 'option' )); $wp_customize->add_control(new WP_Customize_Image_Control($wp_customize,'logo_img',array( 'label' => __('Upload logo image.','bloggyfourteen'), 'section' => 'logo', 'settings' => 'logo_setting[logo_img]' ))); // Footer text; $wp_customize->add_section('footer',array( 'title' => __('Set Footer Items.','bloggyfourteen'), 'description' => __('Change footer text and social media link.','bloggyfourteen'), )); $wp_customize->add_setting('footer_setting[footer_text]',array( 'default' => '© Shihab Mridha', 'type' => 'option', )); $wp_customize->add_control('footer_setting[footer_text]',array( 'label' => __('Change footer text.','bloggyfourteen'), 'section' => 'footer', 'settings' => 'footer_setting[footer_text]', 'type' => 'text' )); // Social Media links; //----> Facebook; $wp_customize->add_setting('footer_setting[social_fb]',array( 'default' => 'http://facebook.com/Smridha', 'type' => 'option', )); $wp_customize->add_control('footer_setting[social_fb]',array( 'label' => __('Facebook profile url.','bloggyfourteen'), 'section' => 'footer', 'settings' => 'footer_setting[social_fb]', 'type' => 'text' )); //----> Twitter; $wp_customize->add_setting('footer_setting[social_tw]',array( 'default' => 'http://twitter.com/shihabmridha', 'type' => 'option', )); $wp_customize->add_control('footer_setting[social_tw]',array( 'label' => __('Twitter profile url.','bloggyfourteen'), 'section' => 'footer', 'settings' => 'footer_setting[social_tw]', 'type' => 'text' )); //----> LinkedIN; $wp_customize->add_setting('footer_setting[social_ln]',array( 'default' => 'http://linkedin.com/', 'type' => 'option', )); $wp_customize->add_control('footer_setting[social_ln]',array( 'label' => __('Linkedin profile url.','bloggyfourteen'), 'section' => 'footer', 'settings' => 'footer_setting[social_ln]', 'type' => 'text' )); //----> Google Plus; $wp_customize->add_setting('footer_setting[social_gp]',array( 'default' => 'http://plus.google.com/+ShihabMridha', 'type' => 'option', )); $wp_customize->add_control('footer_setting[social_gp]',array( 'label' => __('Google Plus profile url.','bloggyfourteen'), 'section' => 'footer', 'settings' => 'footer_setting[social_gp]', 'type' => 'text' )); } ?>