add_setting('center_header_text', array( 'default' => 1, 'sanitize_callback' => 'sanitize_text_field', )); $wp_customize->add_control('center_header_text', array( 'label' => __('Center Header Text', 'adaptable-notes'), 'section' => 'header_image', 'priority' => 0, 'settings' => 'center_header_text', 'type' => 'checkbox', )); $wp_customize->add_setting('primary_theme_color', array( 'default' => '#fab526', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'primary_theme_color', array( 'label' => __('Primary Theme Color', 'adaptable-notes'), 'section' => 'theme_color', 'priority' => 1, 'settings' => 'primary_theme_color', ))); $wp_customize->add_section('colors', array( 'title' => __('Background Color', 'adaptable-notes'), 'priority' => 150, 'capability' => 'edit_theme_options', )); $wp_customize->add_section('static_front_page', array( 'title' => __('Static Front Page', 'adaptable-notes'), 'priority' => 150, 'capability' => 'edit_theme_options', )); $wp_customize->add_section('sidebars_settings', array( 'title' => __('Sidebar', 'adaptable-notes'), 'priority' => 100, 'capability' => 'edit_theme_options', )); $wp_customize->add_section('all_blog_posts', array( 'title' => __('All Blog Posts', 'adaptable-notes'), 'priority' => 100, 'capability' => 'edit_theme_options', )); $wp_customize->add_section('customizable_blogily_header_settings', array( 'title' => __('Header', 'adaptable-notes'), 'priority' => 122, 'capability' => 'edit_theme_options', )); $wp_customize->add_section('navigation_settings', array( 'title' => __('Navigation Settings', 'adaptable-notes'), 'priority' => 50, 'capability' => 'edit_theme_options', )); $wp_customize->add_section('upper_widgets_settings', array( 'title' => __('Top Widget Settings', 'adaptable-notes'), 'priority' => 50, 'capability' => 'edit_theme_options', )); /***************************************************/ /***** pagination ****/ /**************************************************/ $wp_customize->add_section('customizable_blogily_pagination_settings', array( 'title' => __('Pagination Type', 'adaptable-notes'), 'priority' => 122, 'capability' => 'edit_theme_options', )); $wp_customize->add_setting('customizable_blogily_pagination_type', array( 'default' => '1', 'capability' => 'edit_theme_options', 'priority' => 1, 'sanitize_callback' => 'adaptable_notes_sanitize_select', )); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'customizable_blogily_pagination_type', array( 'label' => __('Pagination Type', 'adaptable-notes'), 'section' => 'all_blog_posts', 'settings' => 'customizable_blogily_pagination_type', 'type' => 'radio', 'choices' => array( '0' => __('Next/Previous', 'adaptable-notes'), '1' => __('Numbered', 'adaptable-notes'), ), 'transport' => 'refresh', 'priority' => 99, ) ) ); $wp_customize->add_setting('all_blog_posts_headline', array( 'default' => '#333', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'all_blog_posts_headline', array( 'label' => __('Headline Colors', 'adaptable-notes'), 'section' => 'all_blog_posts', 'priority' => 1, 'settings' => 'all_blog_posts_headline', ))); $wp_customize->add_setting('all_blog_posts_date', array( 'default' => '#8c8c8c', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'all_blog_posts_date', array( 'label' => __('Date Colors', 'adaptable-notes'), 'section' => 'all_blog_posts', 'priority' => 1, 'settings' => 'all_blog_posts_date', ))); $wp_customize->add_setting('all_blog_posts_text', array( 'default' => '#989898', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'all_blog_posts_text', array( 'label' => __('Text Colors', 'adaptable-notes'), 'section' => 'all_blog_posts', 'priority' => 1, 'settings' => 'all_blog_posts_text', ))); $wp_customize->add_setting('all_blog_posts_bg', array( 'default' => '#fff', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'all_blog_posts_bg', array( 'label' => __('Background Color', 'adaptable-notes'), 'section' => 'all_blog_posts', 'priority' => 1, 'settings' => 'all_blog_posts_bg', ))); //Breadcrumb $wp_customize->add_setting('customizable_blogily_single_breadcrumb_section', array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'adaptable_notes_sanitize_select', 'transport' => 'refresh', 'default' => '1', )); $wp_customize->add_control('customizable_blogily_single_breadcrumb_section', array( 'label' => __('Breadcrumb Section', 'adaptable-notes'), 'section' => 'customizable_single_settings', 'description' => __('This setting will only affect blog posts.', 'adaptable-notes'), 'settings' => 'customizable_blogily_single_breadcrumb_section', 'type' => 'radio', 'choices' => array( '1' => __('OFF', 'adaptable-notes'), '0' => __('ON', 'adaptable-notes'), ), )); //Tags $wp_customize->add_setting('customizable_blogily_single_tags_section', array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'adaptable_notes_sanitize_select', 'transport' => 'refresh', 'default' => '1', )); $wp_customize->add_control('customizable_blogily_single_tags_section', array( 'label' => __('Tags Section', 'adaptable-notes'), 'section' => 'customizable_single_settings', 'description' => __('This setting will only affect blog posts.', 'adaptable-notes'), 'settings' => 'customizable_blogily_single_tags_section', 'type' => 'radio', 'choices' => array( '0' => __('OFF', 'adaptable-notes'), '1' => __('ON', 'adaptable-notes'), ), )); //Related Posts $wp_customize->add_setting('customizable_blogily_relatedposts_section', array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'adaptable_notes_sanitize_select', 'transport' => 'refresh', 'default' => '1', )); $wp_customize->add_control('customizable_blogily_relatedposts_section', array( 'label' => __('Related Posts Section', 'adaptable-notes'), 'section' => 'customizable_single_settings', 'description' => __('This setting will only affect blog posts.', 'adaptable-notes'), 'settings' => 'customizable_blogily_relatedposts_section', 'type' => 'radio', 'choices' => array( '1' => __('OFF', 'adaptable-notes'), '0' => __('ON', 'adaptable-notes'), ), )); //Author Box $wp_customize->add_setting('customizable_blogily_authorbox_section', array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'adaptable_notes_sanitize_select', 'transport' => 'refresh', 'default' => '1', )); $wp_customize->add_control('customizable_blogily_authorbox_section', array( 'label' => __('Author box Section', 'adaptable-notes'), 'section' => 'customizable_single_settings', 'description' => __('This setting will only affect blog posts.', 'adaptable-notes'), 'settings' => 'customizable_blogily_authorbox_section', 'type' => 'radio', 'choices' => array( '1' => __('OFF', 'adaptable-notes'), '0' => __('ON', 'adaptable-notes'), ), )); $wp_customize->add_setting('post_page_headline', array( 'default' => '#000', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'post_page_headline', array( 'label' => __('Headline Colors', 'adaptable-notes'), 'section' => 'customizable_single_settings', 'priority' => 1, 'settings' => 'post_page_headline', ))); $wp_customize->add_setting('post_page_date', array( 'default' => '#a2a2a2', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'post_page_date', array( 'label' => __('Date Colors', 'adaptable-notes'), 'section' => 'customizable_single_settings', 'description' => __('This setting will only affect blog posts.', 'adaptable-notes'), 'priority' => 1, 'settings' => 'post_page_date', ))); $wp_customize->add_setting('post_page_text', array( 'default' => '#555555', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'post_page_text', array( 'label' => __('Text Colors', 'adaptable-notes'), 'section' => 'customizable_single_settings', 'priority' => 1, 'settings' => 'post_page_text', ))); $wp_customize->add_setting('post_page_link', array( 'default' => '#fab526', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'post_page_link', array( 'label' => __('Link Colors', 'adaptable-notes'), 'section' => 'customizable_single_settings', 'priority' => 1, 'settings' => 'post_page_link', ))); $wp_customize->add_setting('post_page_background', array( 'default' => '#fff', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'post_page_background', array( 'label' => __('Background Color', 'adaptable-notes'), 'section' => 'customizable_single_settings', 'priority' => 1, 'settings' => 'post_page_background', ))); } add_action('customize_register', 'adaptable_notes_customize_register'); if (! function_exists('adaptable_notes_color_choice')): function adaptable_notes_color_choice() { ?> manager->get_control($setting->id)->choices; // If the input is a valid key, return it; otherwise, return the default. return (array_key_exists($input, $choices) ? $input : $setting->default); }