add_panel( 'cafeteria_elementor_theme_option_panel',
array(
'title' => __( 'Theme Options', 'cafeteria-elementor' ),
'priority' => 100,
'capability' => 'edit_theme_options',
)
);
// Typography Section.
$cafeteria_elementor_font_array = array(
'' => 'No Fonts',
'Abril Fatface' => 'Abril Fatface',
'Acme' => 'Acme',
'Anton' => 'Anton',
'Architects Daughter' => 'Architects Daughter',
'Arimo' => 'Arimo',
'Arsenal' => 'Arsenal',
'Arvo' => 'Arvo',
'Alegreya' => 'Alegreya',
'Alfa Slab One' => 'Alfa Slab One',
'Averia Serif Libre' => 'Averia Serif Libre',
'Bangers' => 'Bangers',
'Boogaloo' => 'Boogaloo',
'Bad Script' => 'Bad Script',
'Bitter' => 'Bitter',
'Bree Serif' => 'Bree Serif',
'BenchNine' => 'BenchNine',
'Cabin' => 'Cabin',
'Cardo' => 'Cardo',
'Courgette' => 'Courgette',
'Cherry Swash' => 'Cherry Swash',
'Cormorant Garamond' => 'Cormorant Garamond',
'Crimson Text' => 'Crimson Text',
'Cuprum' => 'Cuprum',
'Cookie' => 'Cookie',
'Chewy' => 'Chewy',
'Days One' => 'Days One',
'Dosis' => 'Dosis',
'Droid Sans' => 'Droid Sans',
'Economica' => 'Economica',
'Fredoka One' => 'Fredoka One',
'Fjalla One' => 'Fjalla One',
'Francois One' => 'Francois One',
'Frank Ruhl Libre' => 'Frank Ruhl Libre',
'Gloria Hallelujah' => 'Gloria Hallelujah',
'Great Vibes' => 'Great Vibes',
'Handlee' => 'Handlee',
'Hammersmith One' => 'Hammersmith One',
'Inconsolata' => 'Inconsolata',
'Indie Flower' => 'Indie Flower',
'IM Fell English SC' => 'IM Fell English SC',
'Julius Sans One' => 'Julius Sans One',
'Josefin Slab' => 'Josefin Slab',
'Josefin Sans' => 'Josefin Sans',
'Kanit' => 'Kanit',
'Lobster' => 'Lobster',
'Lato' => 'Lato',
'Lora' => 'Lora',
'Libre Baskerville' => 'Libre Baskerville',
'Lobster Two' => 'Lobster Two',
'Merriweather' => 'Merriweather',
'Monda' => 'Monda',
'Montserrat' => 'Montserrat',
'Muli' => 'Muli',
'Marck Script' => 'Marck Script',
'Noto Serif' => 'Noto Serif',
'Open Sans' => 'Open Sans',
'Overpass' => 'Overpass',
'Overpass Mono' => 'Overpass Mono',
'Oxygen' => 'Oxygen',
'Orbitron' => 'Orbitron',
'Patua One' => 'Patua One',
'Pacifico' => 'Pacifico',
'Padauk' => 'Padauk',
'Playball' => 'Playball',
'Playfair Display' => 'Playfair Display',
'PT Sans' => 'PT Sans',
'Philosopher' => 'Philosopher',
'Permanent Marker' => 'Permanent Marker',
'Poiret One' => 'Poiret One',
'Quicksand' => 'Quicksand',
'Quattrocento Sans' => 'Quattrocento Sans',
'Raleway' => 'Raleway',
'Rubik' => 'Rubik',
'Rokkitt' => 'Rokkitt',
'Russo One' => 'Russo One',
'Righteous' => 'Righteous',
'Slabo' => 'Slabo',
'Source Sans Pro' => 'Source Sans Pro',
'Shadows Into Light Two' => 'Shadows Into Light Two',
'Shadows Into Light' => 'Shadows Into Light',
'Sacramento' => 'Sacramento',
'Shrikhand' => 'Shrikhand',
'Tangerine' => 'Tangerine',
'Ubuntu' => 'Ubuntu',
'VT323' => 'VT323',
'Varela Round' => 'Varela Round',
'Vampiro One' => 'Vampiro One',
'Vollkorn' => 'Vollkorn',
'Volkhov' => 'Volkhov',
'Yanone Kaffeesatz' => 'Yanone Kaffeesatz'
);
$wp_customize->add_section( 'cafeteria_elementor_typography',
array(
'title' => __( 'Typography', 'cafeteria-elementor' ),
'priority' => 100,
'capability' => 'edit_theme_options',
'panel' => 'cafeteria_elementor_theme_option_panel',
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_body_font_family]',
array(
'default' => $default['cafeteria_elementor_body_font_family'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_choices',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_body_font_family]',
array(
'label' => __( 'Body font family', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_typography',
'type' => 'select',
'choices' => $cafeteria_elementor_font_array,
'priority' => 100,
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_h1_font_family]',
array(
'default' => $default['cafeteria_elementor_h1_font_family'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_choices',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_h1_font_family]',
array(
'label' => __( 'H1 font family', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_typography',
'type' => 'select',
'choices' => $cafeteria_elementor_font_array,
'priority' => 100,
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_h1_font_size]',
array(
'default' => $default['cafeteria_elementor_h1_font_size'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_h1_font_size]',
array(
'label' => __( 'H1 Font Size', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_typography',
'type' => 'text',
'priority' => 100,
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_h2_font_family]',
array(
'default' => $default['cafeteria_elementor_h2_font_family'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_choices',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_h2_font_family]',
array(
'label' => __( 'H2 font family', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_typography',
'type' => 'select',
'choices' => $cafeteria_elementor_font_array,
'priority' => 100,
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_h2_font_size]',
array(
'default' => $default['cafeteria_elementor_h2_font_size'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_h2_font_size]',
array(
'label' => __( 'H2 Font Size', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_typography',
'type' => 'text',
'priority' => 100,
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_h3_font_family]',
array(
'default' => $default['cafeteria_elementor_h3_font_family'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_choices',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_h3_font_family]',
array(
'label' => __( 'H3 font family', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_typography',
'type' => 'select',
'choices' => $cafeteria_elementor_font_array,
'priority' => 100,
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_h3_font_size]',
array(
'default' => $default['cafeteria_elementor_h3_font_size'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_h3_font_size]',
array(
'label' => __( 'H3 Font Size', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_typography',
'type' => 'text',
'priority' => 100,
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_h4_font_family]',
array(
'default' => $default['cafeteria_elementor_h4_font_family'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_choices',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_h4_font_family]',
array(
'label' => __( 'H4 font family', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_typography',
'type' => 'select',
'choices' => $cafeteria_elementor_font_array,
'priority' => 100,
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_h4_font_size]',
array(
'default' => $default['cafeteria_elementor_h4_font_size'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_h4_font_size]',
array(
'label' => __( 'H4 Font Size', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_typography',
'type' => 'text',
'priority' => 100,
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_h5_font_family]',
array(
'default' => $default['cafeteria_elementor_h5_font_family'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_choices',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_h5_font_family]',
array(
'label' => __( 'H5 font family', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_typography',
'type' => 'select',
'choices' => $cafeteria_elementor_font_array,
'priority' => 100,
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_h5_font_size]',
array(
'default' => $default['cafeteria_elementor_h5_font_size'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_h5_font_size]',
array(
'label' => __( 'H5 Font Size', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_typography',
'type' => 'text',
'priority' => 100,
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_h6_font_family]',
array(
'default' => $default['cafeteria_elementor_h6_font_family'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_choices',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_h6_font_family]',
array(
'label' => __( 'H6 font family', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_typography',
'type' => 'select',
'choices' => $cafeteria_elementor_font_array,
'priority' => 100,
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_h6_font_size]',
array(
'default' => $default['cafeteria_elementor_h6_font_size'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_h6_font_size]',
array(
'label' => __( 'H6 Font Size', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_typography',
'type' => 'text',
'priority' => 100,
)
);
// Site title And tagline Option
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_site_title_font_size]',
array(
'default' => $default['cafeteria_elementor_site_title_font_size'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_site_title_font_size]',
array(
'label' => __( 'Site Title Font Size', 'cafeteria-elementor' ),
'section' => 'title_tagline',
'type' => 'text',
'priority' => 10,
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_site_tagline_font_size]',
array(
'default' => $default['cafeteria_elementor_site_tagline_font_size'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_site_tagline_font_size]',
array(
'label' => __( 'Site Tagline Font Size', 'cafeteria-elementor' ),
'section' => 'title_tagline',
'type' => 'text',
'priority' => 10,
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_site_title_color]', array(
'default' => $default['cafeteria_elementor_site_title_color'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_hex_color',
'priority' => 100,
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'theme_options[cafeteria_elementor_site_title_color]', array(
'label' => __( 'Site Title Color', 'cafeteria-elementor' ),
'section' => 'title_tagline',
'settings' => 'theme_options[cafeteria_elementor_site_title_color]',
'priority' => 10,
)));
// Premium features for site title
$wp_customize->add_setting( 'cafeteria_elementor_logo_premium_features', array(
'default' => '',
'sanitize_callback' => 'wp_kses_post',
) );
$wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'cafeteria_elementor_logo_premium_features', array(
'section' => 'title_tagline',
'priority' => 40,
'type' => 'hidden',
'label' => '',
'description' => wp_kses_post('
'. esc_html__( 'Unlock Premium Features', 'cafeteria-elementor' ) . '
- ' . esc_html__( 'Advanced Logo Controls', 'cafeteria-elementor' ) . '
- '. esc_html__( 'Extended Typography Options', 'cafeteria-elementor' ) . '
- '. esc_html__( 'Premium Header Layouts', 'cafeteria-elementor' ) . '
- '. esc_html__( 'More Pro-Level Options', 'cafeteria-elementor' ) . '
'. esc_html__( 'Upgrade Now', 'cafeteria-elementor' ) . '➜ '),
)
) );
// Global Color
$wp_customize->add_section( 'cafeteria_elementor_section_global_color', array(
'title' => __( 'Theme Color', 'cafeteria-elementor' ),
'priority' => 100,
'capability' => 'edit_theme_options',
'panel' => 'cafeteria_elementor_theme_option_panel',
));
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_first_color]', array(
'default' => $default['cafeteria_elementor_first_color'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'theme_options[cafeteria_elementor_first_color]', array(
'label' => __( 'Highlight First Color', 'cafeteria-elementor' ),
'description' => __( 'With a single click, you can change the highlight color of the inner page; use the Elementor editor for customization on the homepage.', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_global_color',
'settings' => 'theme_options[cafeteria_elementor_first_color]',
)));
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_second_color]', array(
'default' => $default['cafeteria_elementor_second_color'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'theme_options[cafeteria_elementor_second_color]', array(
'label' => __( 'Highlight Second Color', 'cafeteria-elementor' ),
'description' => __( 'With a single click, you can change the highlight color of the inner page; use the Elementor editor for customization on the homepage.', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_global_color',
'settings' => 'theme_options[cafeteria_elementor_second_color]',
)));
// General Option.
$wp_customize->add_section( 'cafeteria_elementor_section_general_option',
array(
'title' => __( 'General Options', 'cafeteria-elementor' ),
'priority' => 100,
'capability' => 'edit_theme_options',
'panel' => 'cafeteria_elementor_theme_option_panel',
)
);
// Cursor Dot Outline
$wp_customize->add_setting(
'theme_options[cafeteria_elementor_enable_cursor_dot_outline]',
array(
'default' => $default['cafeteria_elementor_enable_cursor_dot_outline'],
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control(
'theme_options[cafeteria_elementor_enable_cursor_dot_outline]',
array(
'label' => esc_html__('Enable Cursor Dot Outline', 'cafeteria-elementor'),
'section' => 'cafeteria_elementor_section_general_option',
'type' => 'checkbox',
)
);
// Progress Bar
$wp_customize->add_setting(
'theme_options[cafeteria_elementor_progress_bar]',
array(
'default' => $default['cafeteria_elementor_progress_bar'],
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control(
'theme_options[cafeteria_elementor_progress_bar]',
array(
'label' => esc_html__('Enable or Disable Progress Bar', 'cafeteria-elementor'),
'section' => 'cafeteria_elementor_section_general_option',
'type' => 'checkbox',
)
);
//Wow Animation
$wp_customize->add_setting(
'cafeteria_elementor_animation',
array(
'default' => $default['cafeteria_elementor_animation'],
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control(
'cafeteria_elementor_animation',
array(
'label' => esc_html__('Enable Animation', 'cafeteria-elementor'),
'section' => 'cafeteria_elementor_section_general_option',
'type' => 'checkbox',
)
);
// Setting show scroll to top.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_show_scroll_to_top]',
array(
'default' => $default['cafeteria_elementor_show_scroll_to_top'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_show_scroll_to_top]',
array(
'label' => __( 'Show Scroll To Top', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_general_option',
'type' => 'checkbox',
'priority' => 100,
)
);
// Setting show Preloader.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_show_preloader_setting]',
array(
'default' => $default['cafeteria_elementor_show_preloader_setting'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_show_preloader_setting]',
array(
'label' => __( 'Show Preloader', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_general_option',
'type' => 'checkbox',
'priority' => 100,
)
);
// Setting Preloader Background image.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_show_preloader_background_image]',
array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'esc_url_raw',
)
);
$wp_customize->add_control( new WP_Customize_Image_Control(
$wp_customize,
'theme_options[cafeteria_elementor_show_preloader_background_image]',
array(
'label' => __( 'Preloader Background Image', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_general_option',
'priority' => 100,
)
));
// Post Option.
$wp_customize->add_section( 'cafeteria_elementor_section_post_option',
array(
'title' => __( 'Post Options', 'cafeteria-elementor' ),
'priority' => 100,
'capability' => 'edit_theme_options',
'panel' => 'cafeteria_elementor_theme_option_panel',
)
);
// Setting show Post date.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_show_post_date_setting]',
array(
'default' => $default['cafeteria_elementor_show_post_date_setting'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_show_post_date_setting]',
array(
'label' => __( 'Show Post Date', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_post_option',
'type' => 'checkbox',
'priority' => 100,
)
);
// Setting show Post Heading.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_show_post_heading_setting]',
array(
'default' => $default['cafeteria_elementor_show_post_heading_setting'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_show_post_heading_setting]',
array(
'label' => __( 'Show Post Heading', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_post_option',
'type' => 'checkbox',
'priority' => 100,
)
);
// Setting show Post Content.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_show_post_content_setting]',
array(
'default' => $default['cafeteria_elementor_show_post_content_setting'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_show_post_content_setting]',
array(
'label' => __( 'Show Post Full Content', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_post_option',
'type' => 'checkbox',
'priority' => 100,
)
);
// Setting show Post admin.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_show_post_admin_setting]',
array(
'default' => $default['cafeteria_elementor_show_post_admin_setting'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_show_post_admin_setting]',
array(
'label' => __( 'Show Post Admin', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_post_option',
'type' => 'checkbox',
'priority' => 100,
)
);
// Setting show Post Categories.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_show_post_categories_setting]',
array(
'default' => $default['cafeteria_elementor_show_post_categories_setting'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_show_post_categories_setting]',
array(
'label' => __( 'Show Post Categories', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_post_option',
'type' => 'checkbox',
'priority' => 100,
)
);
// Setting show Post Comments.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_show_post_comments_setting]',
array(
'default' => $default['cafeteria_elementor_show_post_comments_setting'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_show_post_comments_setting]',
array(
'label' => __( 'Show Post Comments', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_post_option',
'type' => 'checkbox',
'priority' => 100,
)
);
// Setting show Post Featured Image.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_show_post_featured_image_setting]',
array(
'default' => $default['cafeteria_elementor_show_post_featured_image_setting'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_show_post_featured_image_setting]',
array(
'label' => __( 'Show Post Featured Image', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_post_option',
'type' => 'checkbox',
'priority' => 100,
)
);
// Setting show Post Tags.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_show_post_tags_setting]',
array(
'default' => $default['cafeteria_elementor_show_post_tags_setting'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_show_post_tags_setting]',
array(
'label' => __( 'Show Post Tags', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_post_option',
'type' => 'checkbox',
'priority' => 100,
)
);
// Setting Post Navigation.
$wp_customize->add_setting(
'theme_options[cafeteria_elementor_enable_post_navigation]',
array(
'default' => $default['cafeteria_elementor_enable_post_navigation'],
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control(
'theme_options[cafeteria_elementor_enable_post_navigation]',
array(
'label' => esc_html__('Enable Post Navigation', 'cafeteria-elementor'),
'section' => 'cafeteria_elementor_section_post_option',
'type' => 'checkbox',
)
);
// Setting show to First Cap
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_show_first_caps]',
array(
'default' => $default['cafeteria_elementor_show_first_caps'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_show_first_caps]',
array(
'label' => __( 'First Cap (First Capital Letter)', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_post_option',
'type' => 'checkbox',
'priority' => 100,
)
);
// Related post
$wp_customize->add_section( 'cafeteria_elementor_related_post_option',
array(
'title' => __( 'Related Post Options', 'cafeteria-elementor' ),
'priority' => 100,
'capability' => 'edit_theme_options',
'panel' => 'cafeteria_elementor_theme_option_panel',
)
);
$wp_customize->add_setting(
'theme_options[cafeteria_elementor_enable_related_post]',
array(
'default' => $default['cafeteria_elementor_enable_related_post'],
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control(
'theme_options[cafeteria_elementor_enable_related_post]',
array(
'label' => esc_html__('Enable Related post', 'cafeteria-elementor'),
'section' => 'cafeteria_elementor_related_post_option',
'type' => 'checkbox',
)
);
$wp_customize->add_setting(
'theme_options[cafeteria_elementor_enable_related_post_image]',
array(
'default' => $default['cafeteria_elementor_enable_related_post_image'],
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control(
'theme_options[cafeteria_elementor_enable_related_post_image]',
array(
'label' => esc_html__('Enable Related post Image', 'cafeteria-elementor'),
'section' => 'cafeteria_elementor_related_post_option',
'type' => 'checkbox',
)
);
// Header Section.
$wp_customize->add_section( 'cafeteria_elementor_section_header',
array(
'title' => __( 'Header Options', 'cafeteria-elementor' ),
'priority' => 100,
'capability' => 'edit_theme_options',
'panel' => 'cafeteria_elementor_theme_option_panel',
)
);
// Setting show_title.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_show_title]',
array(
'default' => $default['cafeteria_elementor_show_title'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_show_title]',
array(
'label' => __( 'Show Site Title', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_header',
'type' => 'checkbox',
'priority' => 100,
)
);
// Setting show_tagline.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_show_tagline]',
array(
'default' => $default['cafeteria_elementor_show_tagline'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_show_tagline]',
array(
'label' => __( 'Show Tagline', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_header',
'type' => 'checkbox',
'priority' => 100,
)
);
// Setting show to header
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_show_top_header]',
array(
'default' => $default['cafeteria_elementor_show_top_header'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_show_top_header]',
array(
'label' => __( 'Show Top Header', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_header',
'type' => 'checkbox',
'priority' => 100,
)
);
// Setting top header location
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_header_top_location]',
array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_header_top_location]',
array(
'label' => __( 'Add Location', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_header',
'type' => 'text',
'priority' => 100,
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_header_top_location_link]',
array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'esc_url_raw',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_header_top_location_link]',
array(
'label' => __( 'Location Link', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_header',
'type' => 'url',
'priority' => 100,
)
);
// Setting top header email
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_header_top_email]',
array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_email',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_header_top_email]',
array(
'label' => __( 'Add Email', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_header',
'type' => 'text',
'priority' => 100,
)
);
// Setting top header phone
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_header_top_phone_number]',
array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_header_top_phone_number]',
array(
'label' => __( 'Add Phone Number', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_header',
'type' => 'text',
'priority' => 100,
)
);
// Setting top_button
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_header_top_buttonlink]',
array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'esc_url_raw',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_header_top_buttonlink]',
array(
'label' => __( 'Cart Button Link', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_header',
'type' => 'url',
'priority' => 100,
)
);
// Premium features box for header section
$wp_customize->add_setting( 'cafeteria_elementor_header_premium_features', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'wp_kses_post',
) );
$wp_customize->add_control( new WP_Customize_Control($wp_customize, 'cafeteria_elementor_header_premium_features', array(
'section' => 'cafeteria_elementor_section_header',
'priority' => 100,
'type' => 'hidden',
'label' => '',
'description' => wp_kses_post(''. esc_html__( 'Unlock Premium Features', 'cafeteria-elementor' ) . '
- ' . esc_html__( 'Set custom header colors', 'cafeteria-elementor' ) . '
- '. esc_html__( 'Fine-tune icon & text sizing', 'cafeteria-elementor' ) . '
- '. esc_html__( 'Use advanced font styling', 'cafeteria-elementor' ) . '
- '. esc_html__( 'More Pro-Level Options', 'cafeteria-elementor' ) . '
'. esc_html__( 'Upgrade Now', 'cafeteria-elementor' ) . '➜ '),
)
) );
// Social Media Section.
$wp_customize->add_section( 'cafeteria_elementor_section_social_media',
array(
'title' => __( 'Social Media Options', 'cafeteria-elementor' ),
'priority' => 100,
'capability' => 'edit_theme_options',
'panel' => 'cafeteria_elementor_theme_option_panel',
)
);
// Setting show_social_icon.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_show_social_icon]',
array(
'default' => $default['cafeteria_elementor_show_social_icon'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_show_social_icon]',
array(
'label' => __( 'Show Social Icon', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_social_media',
'type' => 'checkbox',
'priority' => 100,
)
);
// facebook button Url
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_header_social_facebook_link]',
array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'esc_url_raw',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_header_social_facebook_link]',
array(
'label' => __( 'Add Facebook Link', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_social_media',
'type' => 'url',
'priority' => 100,
)
);
// twitter button Url
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_header_social_twitter_link]',
array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'esc_url_raw',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_header_social_twitter_link]',
array(
'label' => __( 'Add Twitter Link', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_social_media',
'type' => 'url',
'priority' => 100,
)
);
// instagram button Url
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_header_social_instagram_link]',
array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'esc_url_raw',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_header_social_instagram_link]',
array(
'label' => __( 'Add Instagram Link', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_social_media',
'type' => 'url',
'priority' => 100,
)
);
// youtube button Url
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_header_social_youtube_link]',
array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'esc_url_raw',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_header_social_youtube_link]',
array(
'label' => __( 'Add YouTube Link', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_social_media',
'type' => 'url',
'priority' => 100,
)
);
// Layout Section.
$wp_customize->add_section( 'cafeteria_elementor_section_layout',
array(
'title' => __( 'Layout Options', 'cafeteria-elementor' ),
'priority' => 100,
'capability' => 'edit_theme_options',
'panel' => 'cafeteria_elementor_theme_option_panel',
)
);
// Setting global_layout.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_global_layout]',
array(
'default' => $default['cafeteria_elementor_global_layout'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_select',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_global_layout]',
array(
'label' => __( 'Global Layout', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_layout',
'type' => 'select',
'choices' => cafeteria_elementor_get_global_layout_options(),
'priority' => 100,
)
);
// Setting archive_layout.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_archive_layout]',
array(
'default' => $default['cafeteria_elementor_archive_layout'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_select',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_archive_layout]',
array(
'label' => __( 'Archive Layout', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_layout',
'type' => 'select',
'choices' => cafeteria_elementor_get_archive_layout_options(),
'priority' => 100,
)
);
// Setting archive_image.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_archive_image]',
array(
'default' => $default['cafeteria_elementor_archive_image'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_select',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_archive_image]',
array(
'label' => __( 'Image in Archive', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_layout',
'type' => 'select',
'choices' => cafeteria_elementor_get_image_sizes_options( true, array( 'disable', 'thumbnail', 'medium', 'large' ), false ),
'priority' => 100,
)
);
// Setting archive_image_alignment.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_archive_image_alignment]',
array(
'default' => $default['cafeteria_elementor_archive_image_alignment'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_select',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_archive_image_alignment]',
array(
'label' => __( 'Image Alignment in Archive', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_layout',
'type' => 'select',
'choices' => cafeteria_elementor_get_image_alignment_options(),
'priority' => 100,
'active_callback' => 'cafeteria_elementor_is_image_in_archive_active',
)
);
// Setting single_image.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_single_image]',
array(
'default' => $default['cafeteria_elementor_single_image'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_select',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_single_image]',
array(
'label' => __( 'Image in Single Post/Page', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_layout',
'type' => 'select',
'choices' => cafeteria_elementor_get_image_sizes_options( true, array( 'disable', 'large' ), false ),
'priority' => 100,
)
);
// No Results Page Setting
$wp_customize->add_section( 'cafeteria_elementor_no_result_page',
array(
'title' => __( 'No Results Page Settings', 'cafeteria-elementor' ),
'priority' => 100,
'capability' => 'edit_theme_options',
'panel' => 'cafeteria_elementor_theme_option_panel',
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_no_result_title]',
array(
'default' => $default['cafeteria_elementor_no_result_title'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_no_result_title]',
array(
'label' => __( 'Add Title', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_no_result_page',
'type' => 'text',
'priority' => 100,
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_no_result_text]',
array(
'default' => $default['cafeteria_elementor_no_result_text'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_no_result_text]',
array(
'label' => __( 'Add Text', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_no_result_page',
'type' => 'text',
'priority' => 100,
)
);
// Footer Section.
$wp_customize->add_section( 'cafeteria_elementor_section_footer',
array(
'title' => __( 'Footer Options', 'cafeteria-elementor' ),
'priority' => 100,
'capability' => 'edit_theme_options',
'panel' => 'cafeteria_elementor_theme_option_panel',
)
);
// Setting copyright_text.
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_copyright_text]',
array(
'default' => $default['cafeteria_elementor_copyright_text'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'cafeteria_elementor_sanitize_textarea_content',
'transport' => 'postMessage',
)
);
$wp_customize->add_control( 'theme_options[cafeteria_elementor_copyright_text]',
array(
'label' => __( 'Copyright Text', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_footer',
'type' => 'text',
'priority' => 100,
)
);
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_copyright_background_color]', array(
'default' => $default['cafeteria_elementor_copyright_background_color'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_hex_color',
'priority' => 100,
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'theme_options[cafeteria_elementor_copyright_background_color]', array(
'label' => __( 'Copyright background Color', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_footer',
'settings' => 'theme_options[cafeteria_elementor_copyright_background_color]',
'priority' => 100,
)));
$wp_customize->add_setting( 'theme_options[cafeteria_elementor_copyright_text_color]', array(
'default' => $default['cafeteria_elementor_copyright_text_color'],
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_hex_color',
'priority' => 100,
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'theme_options[cafeteria_elementor_copyright_text_color]', array(
'label' => __( 'Copyright Text Color', 'cafeteria-elementor' ),
'section' => 'cafeteria_elementor_section_footer',
'settings' => 'theme_options[cafeteria_elementor_copyright_text_color]',
'priority' => 100,
)));
// Sticky footer copyright.
$wp_customize->add_setting(
'cafeteria_elementor_sticky_copyright_enable',
array(
'default' => $default['cafeteria_elementor_sticky_copyright_enable'],
'sanitize_callback' => 'cafeteria_elementor_sanitize_checkbox',
)
);
$wp_customize->add_control(
'cafeteria_elementor_sticky_copyright_enable',
array(
'label' => esc_html__('Enable Sticky Copyright', 'cafeteria-elementor'),
'section' => 'cafeteria_elementor_section_footer',
'priority' => 100,
'type' => 'checkbox',
)
);
// Premium features box for footer section
$wp_customize->add_setting( 'cafeteria_elementor_footer_premium_features', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'wp_kses_post',
) );
$wp_customize->add_control( new WP_Customize_Control( $wp_customize,'cafeteria_elementor_footer_premium_features', array(
'section' => 'cafeteria_elementor_section_footer',
'priority' => 100,
'type' => 'hidden',
'label' => '',
'description' => wp_kses_post(''. esc_html__( 'Unlock Premium Features', 'cafeteria-elementor' ) . '
- ' . esc_html__( 'Customize your footer layout', 'cafeteria-elementor' ) . '
- '. esc_html__( 'Add an email signup form', 'cafeteria-elementor' ) . '
- '. esc_html__( 'Style your social icons', 'cafeteria-elementor' ) . '
- '. esc_html__( 'More Pro-Level Options', 'cafeteria-elementor' ) . '
'. esc_html__( 'Upgrade Now', 'cafeteria-elementor' ) . '➜ '),
)
) );