register_section_type( Adventure_Resort_Button::class );
$manager->add_section(
new Adventure_Resort_Button( $manager, 'adventure_resort_pro', [
'title' => esc_html( ADVENTURE_RESORT_TEXT,'adventure-resort' ),
'priority' => 0,
'button_text' => __( 'GET PREMIUM', 'adventure-resort' ),
'button_url' => esc_url( ADVENTURE_RESORT_URL )
] )
);
} );
// Load the JS and CSS.
add_action( 'customize_controls_enqueue_scripts', function() {
$version = wp_get_theme()->get( 'Version' );
wp_enqueue_script(
'adventure-resort-customize-section-button',
get_theme_file_uri( 'vendor/wptrt/customize-section-button/public/js/customize-controls.js' ),
[ 'customize-controls' ],
$version,
true
);
wp_enqueue_style(
'adventure-resort-customize-section-button',
get_theme_file_uri( 'vendor/wptrt/customize-section-button/public/css/customize-controls.css' ),
[ 'customize-controls' ],
$version
);
} );
/**
* Add postMessage support for site title and description for the Theme Customizer.
*
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
*/
function adventure_resort_customize_register($wp_customize){
// Pro Version
class Adventure_Resort_Customize_Pro_Version extends WP_Customize_Control {
public $type = 'pro_options';
public function render_content() {
echo 'For More '. esc_html( $this->label ) .'?';
echo '';
echo '';
echo ' '. esc_html( ADVENTURE_RESORT_BUY_TEXT,'adventure-resort' ) .'';
echo '';
}
}
// Custom Controls
function Adventure_Resort_sanitize_custom_control( $input ) {
return $input;
}
$wp_customize->get_setting('blogname')->transport = 'postMessage';
$wp_customize->get_setting('blogdescription')->transport = 'postMessage';
$wp_customize->add_setting('adventure_resort_logo_title_text', array(
'default' => true,
'sanitize_callback' => 'adventure_resort_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'adventure_resort_logo_title_text',array(
'label' => __( 'Enable Disable Title', 'adventure-resort' ),
'section' => 'title_tagline',
'settings' => 'adventure_resort_logo_title_text',
'type' => 'checkbox',
)));
$wp_customize->add_setting('adventure_resort_theme_description', array(
'default' => false,
'sanitize_callback' => 'adventure_resort_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'adventure_resort_theme_description',array(
'label' => __( 'Enable Disable Tagline', 'adventure-resort' ),
'section' => 'title_tagline',
'settings' => 'adventure_resort_theme_description',
'type' => 'checkbox',
)));
//Logo
$wp_customize->add_setting('adventure_resort_logo_max_height',array(
'default' => '200',
'sanitize_callback' => 'adventure_resort_sanitize_number_absint'
));
$wp_customize->add_control('adventure_resort_logo_max_height',array(
'label' => esc_html__('Logo Width','adventure-resort'),
'section' => 'title_tagline',
'type' => 'number'
));
// Pro Version
$wp_customize->add_setting( 'pro_version_logo', array(
'sanitize_callback' => 'adventure_resort_sanitize_custom_control'
));
$wp_customize->add_control( new Adventure_Resort_Customize_Pro_Version ( $wp_customize,'pro_version_logo', array(
'section' => 'title_tagline',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'adventure-resort' ),
'description' => esc_url( ADVENTURE_RESORT_URL ),
'priority' => 100
)));
// Global Color Settings
$wp_customize->add_section('adventure_resort_global_color_settings',array(
'title' => esc_html__('Global Settings','adventure-resort'),
'priority' => 28,
));
$wp_customize->add_setting( 'adventure_resort_first_color', array(
'default' => '#00190A',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'adventure_resort_first_color', array(
'label' => __('Select Your First Color', 'adventure-resort'),
'description' => __('Change the global color of the theme in one click.', 'adventure-resort'),
'section' => 'adventure_resort_global_color_settings',
'settings' => 'adventure_resort_first_color',
)));
$wp_customize->add_setting( 'adventure_resort_second_color', array(
'default' => '#FDD61F',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'adventure_resort_second_color', array(
'label' => __('Select Your Second Color', 'adventure-resort'),
'description' => __('Change the global color of the theme in one click.', 'adventure-resort'),
'section' => 'adventure_resort_global_color_settings',
'settings' => 'adventure_resort_second_color',
)));
//Typography option
$adventure_resort_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',
'Roboto' => 'Roboto',
'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'
);
// Heading Typography
$wp_customize->add_setting( 'adventure_resort_heading_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'adventure_resort_heading_color', array(
'label' => __('Heading Color', 'adventure-resort'),
'section' => 'adventure_resort_global_color_settings',
'settings' => 'adventure_resort_heading_color',
)));
$wp_customize->add_setting('adventure_resort_heading_font_family', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'adventure_resort_sanitize_choices',
));
$wp_customize->add_control( 'adventure_resort_heading_font_family', array(
'section' => 'adventure_resort_global_color_settings',
'label' => __('Heading Fonts', 'adventure-resort'),
'type' => 'select',
'choices' => $adventure_resort_font_array,
));
$wp_customize->add_setting('adventure_resort_heading_font_size',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_heading_font_size',array(
'label' => esc_html__('Heading Font Size','adventure-resort'),
'section' => 'adventure_resort_global_color_settings',
'setting' => 'adventure_resort_heading_font_size',
'type' => 'text'
));
// Paragraph Typography
$wp_customize->add_setting( 'adventure_resort_paragraph_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'adventure_resort_paragraph_color', array(
'label' => __('Paragraph Color', 'adventure-resort'),
'section' => 'adventure_resort_global_color_settings',
'settings' => 'adventure_resort_paragraph_color',
)));
$wp_customize->add_setting('adventure_resort_paragraph_font_family', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'adventure_resort_sanitize_choices',
));
$wp_customize->add_control( 'adventure_resort_paragraph_font_family', array(
'section' => 'adventure_resort_global_color_settings',
'label' => __('Paragraph Fonts', 'adventure-resort'),
'type' => 'select',
'choices' => $adventure_resort_font_array,
));
$wp_customize->add_setting('adventure_resort_paragraph_font_size',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_paragraph_font_size',array(
'label' => esc_html__('Paragraph Font Size','adventure-resort'),
'section' => 'adventure_resort_global_color_settings',
'setting' => 'adventure_resort_paragraph_font_size',
'type' => 'text'
));
// Pro Version
$wp_customize->add_setting( 'pro_version_color_setting', array(
'sanitize_callback' => 'adventure_resort_sanitize_custom_control'
));
$wp_customize->add_control( new Adventure_Resort_Customize_Pro_Version ( $wp_customize,'pro_version_color_setting', array(
'section' => 'adventure_resort_global_color_settings',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'adventure-resort' ),
'description' => esc_url( ADVENTURE_RESORT_URL ),
'priority' => 100
)));
// Post Layouts Settings
$wp_customize->add_section('adventure_resort_post_layouts_settings',array(
'title' => esc_html__('Post Layouts Settings','adventure-resort'),
'priority' => 30,
));
$wp_customize->add_setting('adventure_resort_post_layout',array(
'default' => 'pattern_two_column_right',
'sanitize_callback' => 'adventure_resort_sanitize_choices'
));
$wp_customize->add_control(new Adventure_Resort_Image_Radio_Control($wp_customize, 'adventure_resort_post_layout', array(
'type' => 'select',
'label' => __('Blog Post Layouts','adventure-resort'),
'section' => 'adventure_resort_post_layouts_settings',
'choices' => array(
'pattern_one_column' => esc_url(get_template_directory_uri()).'/assets/img/1column.png',
'pattern_two_column_right' => esc_url(get_template_directory_uri()).'/assets/img/right-sidebar.png',
'pattern_two_column_left' => esc_url(get_template_directory_uri()).'/assets/img/left-sidebar.png',
'pattern_three_column' => esc_url(get_template_directory_uri()).'/assets/img/3column.png',
'pattern_four_column' => esc_url(get_template_directory_uri()).'/assets/img/4column.png',
'pattern_grid_post' => esc_url(get_template_directory_uri()).'/assets/img/grid.png',
))
));
// Pro Version
$wp_customize->add_setting( 'pro_version_post_layouts_settings', array(
'sanitize_callback' => 'adventure_resort_sanitize_custom_control'
) );
$wp_customize->add_control( new Adventure_Resort_Customize_Pro_Version ( $wp_customize,
'pro_version_post_layouts_settings', array(
'section' => 'adventure_resort_post_layouts_settings',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'adventure-resort' ),
'description' => esc_url( ADVENTURE_RESORT_URL ),
'priority' => 100
)
)
);
// General Settings
$wp_customize->add_section('adventure_resort_general_settings',array(
'title' => esc_html__('General Settings','adventure-resort'),
'priority' => 30,
));
$wp_customize->add_setting('adventure_resort_width_option',array(
'default' => 'Full Width',
'transport' => 'refresh',
'sanitize_callback' => 'adventure_resort_sanitize_choices'
));
$wp_customize->add_control('adventure_resort_width_option',array(
'type' => 'select',
'section' => 'adventure_resort_general_settings',
'choices' => array(
'Full Width' => __('Full Width','adventure-resort'),
'Wide Width' => __('Wide Width','adventure-resort'),
'Boxed Width' => __('Boxed Width','adventure-resort')
),
) );
$wp_customize->add_setting('adventure_resort_preloader_hide', array(
'default' => 0,
'sanitize_callback' => 'adventure_resort_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'adventure_resort_preloader_hide',array(
'label' => __( 'Show Theme Preloader', 'adventure-resort' ),
'section' => 'adventure_resort_general_settings',
'settings' => 'adventure_resort_preloader_hide',
'type' => 'checkbox',
)));
$wp_customize->add_setting('adventure_resort_preloader_type',array(
'default' => 'Preloader 1',
'sanitize_callback' => 'adventure_resort_sanitize_choices'
));
$wp_customize->add_control('adventure_resort_preloader_type',array(
'type' => 'radio',
'label' => esc_html__('Preloader Type','adventure-resort'),
'section' => 'adventure_resort_general_settings',
'choices' => array(
'Preloader 1' => __('Preloader 1','adventure-resort'),
'Preloader 2' => __('Preloader 2','adventure-resort'),
),
) );
$wp_customize->add_setting( 'adventure_resort_preloader_bg_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'adventure_resort_preloader_bg_color', array(
'label' => esc_html__('Preloader Background Color','adventure-resort'),
'section' => 'adventure_resort_general_settings',
'settings' => 'adventure_resort_preloader_bg_color'
)));
$wp_customize->add_setting( 'adventure_resort_preloader_dot_1_color', array(
'default' => '#ffffff',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'adventure_resort_preloader_dot_1_color', array(
'label' => esc_html__('Preloader First Dot Color','adventure-resort'),
'section' => 'adventure_resort_general_settings',
'settings' => 'adventure_resort_preloader_dot_1_color',
'active_callback' => 'adventure_resort_preloader1'
)));
$wp_customize->add_setting( 'adventure_resort_preloader_dot_2_color', array(
'default' => '#000000',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'adventure_resort_preloader_dot_2_color', array(
'label' => esc_html__('Preloader Second Dot Color','adventure-resort'),
'section' => 'adventure_resort_general_settings',
'settings' => 'adventure_resort_preloader_dot_2_color',
'active_callback' => 'adventure_resort_preloader1'
)));
$wp_customize->add_setting( 'adventure_resort_preloader2_dot_color', array(
'default' => '#00190A',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'adventure_resort_preloader2_dot_color', array(
'label' => esc_html__('Preloader Dot Color','adventure-resort'),
'section' => 'adventure_resort_general_settings',
'settings' => 'adventure_resort_preloader2_dot_color',
'active_callback' => 'adventure_resort_preloader2'
)));
$wp_customize->add_setting('adventure_resort_sticky_header', array(
'default' => false,
'sanitize_callback' => 'adventure_resort_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'adventure_resort_sticky_header',array(
'label' => __( 'Show Sticky Header', 'adventure-resort' ),
'section' => 'adventure_resort_general_settings',
'settings' => 'adventure_resort_sticky_header',
'type' => 'checkbox',
)));
$wp_customize->add_setting('adventure_resort_scroll_hide', array(
'default' => true,
'sanitize_callback' => 'adventure_resort_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'adventure_resort_scroll_hide',array(
'label' => __( 'Show Theme Scroll To Top', 'adventure-resort' ),
'section' => 'adventure_resort_general_settings',
'settings' => 'adventure_resort_scroll_hide',
'type' => 'checkbox',
)));
$wp_customize->add_setting('adventure_resort_scroll_top_position',array(
'default' => 'Right',
'sanitize_callback' => 'adventure_resort_sanitize_choices'
));
$wp_customize->add_control('adventure_resort_scroll_top_position',array(
'type' => 'radio',
'section' => 'adventure_resort_general_settings',
'choices' => array(
'Right' => __('Right','adventure-resort'),
'Left' => __('Left','adventure-resort'),
'Center' => __('Center','adventure-resort')
),
) );
$wp_customize->add_setting( 'adventure_resort_scroll_bg_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'adventure_resort_scroll_bg_color', array(
'label' => esc_html__('Scroll Top Background Color','adventure-resort'),
'section' => 'adventure_resort_general_settings',
'settings' => 'adventure_resort_scroll_bg_color'
)));
$wp_customize->add_setting( 'adventure_resort_scroll_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'adventure_resort_scroll_color', array(
'label' => esc_html__('Scroll Top Color','adventure-resort'),
'section' => 'adventure_resort_general_settings',
'settings' => 'adventure_resort_scroll_color'
)));
$wp_customize->add_setting('adventure_resort_scroll_font_size',array(
'default' => '16',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_scroll_font_size',array(
'label' => __('Scroll Top Font Size','adventure-resort'),
'description' => __('Put in px','adventure-resort'),
'section' => 'adventure_resort_general_settings',
'type' => 'number'
));
$wp_customize->add_setting('adventure_resort_scroll_border_radius',array(
'default' => '0',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_scroll_border_radius',array(
'label' => __('Scroll Top Border Radius','adventure-resort'),
'description' => __('Put in %','adventure-resort'),
'section' => 'adventure_resort_general_settings',
'type' => 'number'
));
// Product Columns
$wp_customize->add_setting( 'adventure_resort_products_per_row' , array(
'default' => '3',
'transport' => 'refresh',
'sanitize_callback' => 'adventure_resort_sanitize_select',
) );
$wp_customize->add_control('adventure_resort_products_per_row', array(
'label' => __( 'Product per row', 'adventure-resort' ),
'section' => 'adventure_resort_general_settings',
'type' => 'select',
'choices' => array(
'2' => '2',
'3' => '3',
'4' => '4',
),
) );
$wp_customize->add_setting('adventure_resort_product_per_page',array(
'default' => '9',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_product_per_page',array(
'label' => __('Product per page','adventure-resort'),
'section' => 'adventure_resort_general_settings',
'type' => 'number'
));
// Product Columns
$wp_customize->add_setting('custom_related_products_number_per_row',array(
'default' => '3',
'transport' => 'refresh',
'sanitize_callback' => 'sanitize_text_field',
));
$wp_customize->add_control('custom_related_products_number_per_row',array(
'label' => esc_html__('Related Products Column Count', 'adventure-resort'),
'section' => 'adventure_resort_general_settings',
'type' => 'number',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 4,
),
));
// Product Columns
$wp_customize->add_setting('custom_related_products_number',array(
'default' => '3',
'transport' => 'refresh',
'sanitize_callback' => 'sanitize_text_field',
));
$wp_customize->add_control('custom_related_products_number',array(
'label' => esc_html__('Number of Related Products Per Page', 'adventure-resort'),
'section' => 'adventure_resort_general_settings',
'type' => 'number',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 10,
),
));
$wp_customize->add_setting('adventure_resort_related_product_display_setting', array(
'default' => true,
'sanitize_callback' => 'adventure_resort_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'adventure_resort_related_product_display_setting',array(
'label' => __( 'Show Related Products', 'adventure-resort' ),
'section' => 'adventure_resort_general_settings',
'settings' => 'adventure_resort_related_product_display_setting',
'type' => 'checkbox',
)));
//Woocommerce shop page Sidebar
$wp_customize->add_setting('adventure_resort_woocommerce_shop_page_sidebar', array(
'default' => true,
'sanitize_callback' => 'adventure_resort_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'adventure_resort_woocommerce_shop_page_sidebar',array(
'label' => __( 'Hide Shop Page Sidebar', 'adventure-resort' ),
'section' => 'adventure_resort_general_settings',
'settings' => 'adventure_resort_woocommerce_shop_page_sidebar',
'type' => 'checkbox',
)));
$wp_customize->add_setting('adventure_resort_shop_page_sidebar_layout',array(
'default' => 'Right Sidebar',
'sanitize_callback' => 'adventure_resort_sanitize_choices'
));
$wp_customize->add_control('adventure_resort_shop_page_sidebar_layout',array(
'type' => 'select',
'label' => __('Woocommerce Shop Page Sidebar','adventure-resort'),
'section' => 'adventure_resort_general_settings',
'choices' => array(
'Left Sidebar' => __('Left Sidebar','adventure-resort'),
'Right Sidebar' => __('Right Sidebar','adventure-resort'),
),
) );
//Woocommerce Single Product page Sidebar
$wp_customize->add_setting('adventure_resort_woocommerce_single_product_page_sidebar', array(
'default' => true,
'sanitize_callback' => 'adventure_resort_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'adventure_resort_woocommerce_single_product_page_sidebar',array(
'label' => __( 'Hide Single Product Page Sidebar', 'adventure-resort' ),
'section' => 'adventure_resort_general_settings',
'settings' => 'adventure_resort_woocommerce_single_product_page_sidebar',
'type' => 'checkbox',
)));
$wp_customize->add_setting('adventure_resort_single_product_sidebar_layout',array(
'default' => 'Right Sidebar',
'sanitize_callback' => 'adventure_resort_sanitize_choices'
));
$wp_customize->add_control('adventure_resort_single_product_sidebar_layout',array(
'type' => 'select',
'label' => __('Woocommerce Single Product Page Sidebar','adventure-resort'),
'section' => 'adventure_resort_general_settings',
'choices' => array(
'Left Sidebar' => __('Left Sidebar','adventure-resort'),
'Right Sidebar' => __('Right Sidebar','adventure-resort'),
),
) );
// Pro Version
$wp_customize->add_setting( 'pro_version_general_setting', array(
'sanitize_callback' => 'adventure_resort_sanitize_custom_control'
));
$wp_customize->add_control( new Adventure_Resort_Customize_Pro_Version ( $wp_customize,'pro_version_general_setting', array(
'section' => 'adventure_resort_general_settings',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'adventure-resort' ),
'description' => esc_url( ADVENTURE_RESORT_URL ),
'priority' => 100
)));
//404 Page Settings
$wp_customize->add_section('adventure_resort_404_page_settings',array(
'title' => esc_html__(' 404 Page Settings','adventure-resort')
));
$wp_customize->add_setting('adventure_resort_404_page_main_heading',array(
'default' => __( 'Oops! Page Not Found', 'adventure-resort' ),
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_404_page_main_heading',array(
'label' => esc_html__('404 Main Heading','adventure-resort'),
'section' => 'adventure_resort_404_page_settings',
'setting' => 'adventure_resort_404_page_main_heading',
'type' => 'text'
));
$wp_customize->add_setting('adventure_resort_404_page_content_1',array(
'default' => __( 'We can’t seem to find the page you’re looking for.', 'adventure-resort' ),
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_404_page_content_1',array(
'label' => esc_html__('404 Main Content 1','adventure-resort'),
'section' => 'adventure_resort_404_page_settings',
'setting' => 'adventure_resort_404_page_content_1',
'type' => 'text'
));
$wp_customize->add_setting('adventure_resort_404_page_text_1',array(
'default' => __( 'It looks like nothing was found at this location.', 'adventure-resort' ),
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_404_page_text_1',array(
'label' => esc_html__('404 Text 1','adventure-resort'),
'section' => 'adventure_resort_404_page_settings',
'setting' => 'adventure_resort_404_page_text_1',
'type' => 'text'
));
$wp_customize->add_setting('adventure_resort_404_page_content_2',array(
'default' => __( 'Need Help?', 'adventure-resort' ),
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_404_page_content_2',array(
'label' => esc_html__('404 Main Content 2','adventure-resort'),
'section' => 'adventure_resort_404_page_settings',
'setting' => 'adventure_resort_404_page_content_2',
'type' => 'text'
));
$wp_customize->add_setting('adventure_resort_404_page_text_2',array(
'default' => __( 'Try searching for what you need below.', 'adventure-resort' ),
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_404_page_text_2',array(
'label' => esc_html__('404 Text 2','adventure-resort'),
'section' => 'adventure_resort_404_page_settings',
'setting' => 'adventure_resort_404_page_text_2',
'type' => 'text'
));
// Pro Version
$wp_customize->add_setting( 'pro_version_404_page_settings', array(
'sanitize_callback' => 'adventure_resort_sanitize_custom_control'
) );
$wp_customize->add_control( new Adventure_Resort_Customize_Pro_Version ( $wp_customize,
'pro_version_404_page_settings', array(
'section' => 'adventure_resort_404_page_settings',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'adventure-resort' ),
'description' => esc_url( ADVENTURE_RESORT_URL ),
'priority' => 100
)
)
);
// Social Link
$wp_customize->add_section('adventure_resort_social_link',array(
'title' => esc_html__('Social Links','adventure-resort'),
));
$wp_customize->add_setting('adventure_resort_facebook_icon',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_facebook_icon',array(
'label' => esc_html__('Facebook Icon','adventure-resort'),
'section' => 'adventure_resort_social_link',
'setting' => 'adventure_resort_facebook_icon',
'type' => 'text',
'default' => 'fab fa-facebook-f',
'description' => __('Select font awesome icons Click Here for select icon. for eg:-fab fa-facebook-f','adventure-resort')
));
$wp_customize->add_setting('adventure_resort_facebook_url',array(
'default' => '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('adventure_resort_facebook_url',array(
'label' => esc_html__('Facebook Link','adventure-resort'),
'section' => 'adventure_resort_social_link',
'setting' => 'adventure_resort_facebook_url',
'type' => 'url'
));
$wp_customize->add_setting('adventure_resort_twitter_icon',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_twitter_icon',array(
'label' => esc_html__('Twitter Icon','adventure-resort'),
'section' => 'adventure_resort_social_link',
'setting' => 'adventure_resort_twitter_icon',
'type' => 'text',
'default' => 'fab fa-twitter',
'description' => __('Select font awesome icons Click Here for select icon. for eg:-fab fa-twitter','adventure-resort')
));
$wp_customize->add_setting('adventure_resort_twitter_url',array(
'default' => '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('adventure_resort_twitter_url',array(
'label' => esc_html__('Twitter Link','adventure-resort'),
'section' => 'adventure_resort_social_link',
'setting' => 'adventure_resort_twitter_url',
'type' => 'url'
));
$wp_customize->add_setting('adventure_resort_intagram_icon',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_intagram_icon',array(
'label' => esc_html__('Intagram Icon','adventure-resort'),
'section' => 'adventure_resort_social_link',
'setting' => 'adventure_resort_intagram_icon',
'type' => 'text',
'default' => 'fab fa-instagram',
'description' => __('Select font awesome icons Click Here for select icon. for eg:-fab fa-instagram','adventure-resort')
));
$wp_customize->add_setting('adventure_resort_intagram_url',array(
'default' => '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('adventure_resort_intagram_url',array(
'label' => esc_html__('Intagram Link','adventure-resort'),
'section' => 'adventure_resort_social_link',
'setting' => 'adventure_resort_intagram_url',
'type' => 'url'
));
$wp_customize->add_setting('adventure_resort_linkedin_icon',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_linkedin_icon',array(
'label' => esc_html__('Linkedin Icon','adventure-resort'),
'section' => 'adventure_resort_social_link',
'setting' => 'adventure_resort_linkedin_icon',
'type' => 'text',
'default' => 'fab fa-linkedin-in',
'description' => __('Select font awesome icons Click Here for select icon. for eg:-fab fa-linkedin-in','adventure-resort')
));
$wp_customize->add_setting('adventure_resort_linkedin_url',array(
'default' => '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('adventure_resort_linkedin_url',array(
'label' => esc_html__('Linkedin Link','adventure-resort'),
'section' => 'adventure_resort_social_link',
'setting' => 'adventure_resort_linkedin_url',
'type' => 'url'
));
$wp_customize->add_setting('adventure_resort_pintrest_icon',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_pintrest_icon',array(
'label' => esc_html__('Pinterest Icon','adventure-resort'),
'section' => 'adventure_resort_social_link',
'setting' => 'adventure_resort_pintrest_icon',
'type' => 'text',
'default' => 'fab fa-pinterest-p',
'description' => __('Select font awesome icons Click Here for select icon. for eg:-fab fa-pinterest-p','adventure-resort')
));
$wp_customize->add_setting('adventure_resort_pintrest_url',array(
'default' => '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('adventure_resort_pintrest_url',array(
'label' => esc_html__('Pinterest Link','adventure-resort'),
'section' => 'adventure_resort_social_link',
'setting' => 'adventure_resort_pintrest_url',
'type' => 'url'
));
// Pro Version
$wp_customize->add_setting( 'pro_version_social_setting', array(
'sanitize_callback' => 'adventure_resort_sanitize_custom_control'
));
$wp_customize->add_control( new Adventure_Resort_Customize_Pro_Version ( $wp_customize,'pro_version_social_setting', array(
'section' => 'adventure_resort_social_link',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'adventure-resort' ),
'description' => esc_url( ADVENTURE_RESORT_URL ),
'priority' => 100
)));
//Top Header
$wp_customize->add_section('adventure_resort_top_header',array(
'title' => esc_html__('Top Header Option','adventure-resort')
));
$wp_customize->add_setting('adventure_resort_topbar_mail_text',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_topbar_mail_text',array(
'label' => esc_html__('Mail Id','adventure-resort'),
'section' => 'adventure_resort_top_header',
'setting' => 'adventure_resort_topbar_mail_text',
'type' => 'text'
));
$wp_customize->add_setting('adventure_resort_topbar_location_text',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_topbar_location_text',array(
'label' => esc_html__('Location','adventure-resort'),
'section' => 'adventure_resort_top_header',
'setting' => 'adventure_resort_topbar_location_text',
'type' => 'text'
));
$wp_customize->add_setting('adventure_resort_header_button_text',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_header_button_text',array(
'label' => esc_html__('Header Button Text','adventure-resort'),
'section' => 'adventure_resort_top_header',
'setting' => 'adventure_resort_header_button_text',
'type' => 'text'
));
$wp_customize->add_setting('adventure_resort_header_button_url',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_header_button_url',array(
'label' => esc_html__('Header Button Url','adventure-resort'),
'section' => 'adventure_resort_top_header',
'setting' => 'adventure_resort_header_button_url',
'type' => 'url'
));
$wp_customize->add_setting('adventure_resort_header_search_setting', array(
'default' => true,
'sanitize_callback' => 'adventure_resort_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'adventure_resort_header_search_setting',array(
'label' => __( 'Show Header Search Icon', 'adventure-resort' ),
'section' => 'adventure_resort_top_header',
'settings' => 'adventure_resort_header_search_setting',
'type' => 'checkbox',
)));
// Pro Version
$wp_customize->add_setting( 'pro_version_top_header_setting', array(
'sanitize_callback' => 'adventure_resort_sanitize_custom_control'
));
$wp_customize->add_control( new Adventure_Resort_Customize_Pro_Version ( $wp_customize,'pro_version_top_header_setting', array(
'section' => 'adventure_resort_top_header',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'adventure-resort' ),
'description' => esc_url( ADVENTURE_RESORT_URL ),
'priority' => 100
)));
//Menu Settings
$wp_customize->add_section('adventure_resort_menu_settings',array(
'title' => esc_html__('Menus Settings','adventure-resort'),
));
$wp_customize->add_setting('adventure_resort_menu_font_size',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_menu_font_size',array(
'label' => esc_html__('Menu Font Size','adventure-resort'),
'section' => 'adventure_resort_menu_settings',
'type' => 'number'
));
$wp_customize->add_setting('adventure_resort_nav_menu_text_transform',array(
'default'=> 'Uppercase',
'sanitize_callback' => 'adventure_resort_sanitize_choices'
));
$wp_customize->add_control('adventure_resort_nav_menu_text_transform',array(
'type' => 'radio',
'label' => esc_html__('Menu Text Transform','adventure-resort'),
'choices' => array(
'Uppercase' => __('Uppercase','adventure-resort'),
'Capitalize' => __('Capitalize','adventure-resort'),
'Lowercase' => __('Lowercase','adventure-resort'),
),
'section'=> 'adventure_resort_menu_settings',
));
$wp_customize->add_setting('adventure_resort_nav_menu_font_weight',array(
'default'=> '500',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_nav_menu_font_weight',array(
'type' => 'number',
'label' => esc_html__('Menu Font Weight','adventure-resort'),
'input_attrs' => array(
'step' => 100,
'min' => 100,
'max' => 1000,
),
'section'=> 'adventure_resort_menu_settings',
));
// Pro Version
$wp_customize->add_setting( 'pro_version_menu_setting', array(
'sanitize_callback' => 'adventure_resort_sanitize_custom_control'
));
$wp_customize->add_control( new Adventure_Resort_Customize_Pro_Version ( $wp_customize,'pro_version_menu_setting', array(
'section' => 'adventure_resort_menu_settings',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'adventure-resort' ),
'description' => esc_url( ADVENTURE_RESORT_URL ),
'priority' => 100
)));
//Slider
$wp_customize->add_section('adventure_resort_top_slider',array(
'title' => esc_html__('Slider Settings','adventure-resort'),
));
$wp_customize->add_setting('adventure_resort_slider_section_setting', array(
'default' => true,
'sanitize_callback' => 'adventure_resort_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'adventure_resort_slider_section_setting',array(
'label' => __( 'Show Header Slider', 'adventure-resort' ),
'section' => 'adventure_resort_top_slider',
'settings' => 'adventure_resort_slider_section_setting',
'type' => 'checkbox',
)));
for ( $adventure_resort_count = 1; $adventure_resort_count <= 3; $adventure_resort_count++ ) {
$wp_customize->add_setting( 'adventure_resort_top_slider_page' . $adventure_resort_count, array(
'default' => '',
'sanitize_callback' => 'adventure_resort_sanitize_dropdown_pages'
) );
$wp_customize->add_control( 'adventure_resort_top_slider_page' . $adventure_resort_count, array(
'label' => __( 'Select Slide Page', 'adventure-resort' ),
'description' => __('Slider image size (1400 x 550)','adventure-resort'),
'section' => 'adventure_resort_top_slider',
'type' => 'dropdown-pages'
) );
}
$wp_customize->add_setting('adventure_resort_slider_short_heading',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_slider_short_heading',array(
'label' => esc_html__('Short Heading','adventure-resort'),
'section' => 'adventure_resort_top_slider',
'setting' => 'adventure_resort_slider_short_heading',
'type' => 'text'
));
$wp_customize->add_setting('adventure_resort_slider_content_layout',array(
'default'=> 'Left',
'sanitize_callback' => 'adventure_resort_sanitize_choices'
));
$wp_customize->add_control('adventure_resort_slider_content_layout',array(
'type' => 'radio',
'label' => esc_html__('Slider Content Layout','adventure-resort'),
'choices' => array(
'Left' => __('Left','adventure-resort'),
'Center' => __('Center','adventure-resort'),
'Right' => __('Right','adventure-resort'),
),
'section'=> 'adventure_resort_top_slider',
));
$wp_customize->add_setting('adventure_resort_slider_opacity_setting', array(
'default' => true,
'sanitize_callback' => 'adventure_resort_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'adventure_resort_slider_opacity_setting',array(
'label' => __( 'Show Image Opacity', 'adventure-resort' ),
'section' => 'adventure_resort_top_slider',
'type' => 'checkbox',
)));
$wp_customize->add_setting( 'adventure_resort_image_opacity_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'adventure_resort_image_opacity_color', array(
'label' => __('Slider Image Opacity Color', 'adventure-resort'),
'section' => 'adventure_resort_top_slider',
'settings' => 'adventure_resort_image_opacity_color',
)));
$wp_customize->add_setting('adventure_resort_slider_opacity',array(
'default'=> '0.7',
'sanitize_callback' => 'adventure_resort_sanitize_choices'
));
$wp_customize->add_control('adventure_resort_slider_opacity',array(
'type' => 'select',
'label' => esc_html__('Slider Image Opacity','adventure-resort'),
'choices' => array(
'0' => '0',
'0.1' => '0.1',
'0.2' => '0.2',
'0.3' => '0.3',
'0.4' => '0.4',
'0.5' => '0.5',
'0.6' => '0.6',
'0.7' => '0.7',
'0.8' => '0.8',
'0.9' => '0.9',
'1' => '1',
),
'section'=> 'adventure_resort_top_slider',
));
// Pro Version
$wp_customize->add_setting( 'pro_version_slider_setting', array(
'sanitize_callback' => 'adventure_resort_sanitize_custom_control'
));
$wp_customize->add_control( new Adventure_Resort_Customize_Pro_Version ( $wp_customize,'pro_version_slider_setting', array(
'section' => 'adventure_resort_top_slider',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'adventure-resort' ),
'description' => esc_url( ADVENTURE_RESORT_URL ),
'priority' => 100
)));
// Activities
$wp_customize->add_section('adventure_resort_services_section',array(
'title' => esc_html__('Activities Option','adventure-resort'),
));
$wp_customize->add_setting('adventure_resort_activities_section_setting', array(
'default' => true,
'sanitize_callback' => 'adventure_resort_sanitize_checkbox'
));
$wp_customize->add_control( new WP_Customize_Control($wp_customize,'adventure_resort_activities_section_setting',array(
'label' => __( 'Show Header Activities', 'adventure-resort' ),
'section' => 'adventure_resort_services_section',
'settings' => 'adventure_resort_activities_section_setting',
'type' => 'checkbox',
)));
$wp_customize->add_setting('adventure_resort_services_heading',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_services_heading',array(
'label' => esc_html__('Short Heading','adventure-resort'),
'section' => 'adventure_resort_services_section',
'setting' => 'adventure_resort_services_heading',
'type' => 'text'
));
$wp_customize->add_setting('adventure_resort_services_content',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_services_content',array(
'label' => esc_html__('Heading','adventure-resort'),
'section' => 'adventure_resort_services_section',
'setting' => 'adventure_resort_services_content',
'type' => 'text'
));
$categories = get_categories();
$cat_post = array();
$cat_post[]= 'select';
$i = 0;
foreach($categories as $category){
if($i==0){
$default = $category->slug;
$i++;
}
$cat_post[$category->slug] = $category->name;
}
$wp_customize->add_setting('adventure_resort_services_sec_category',array(
'default' => 'select',
'sanitize_callback' => 'adventure_resort_sanitize_select',
));
$wp_customize->add_control('adventure_resort_services_sec_category',array(
'type' => 'select',
'choices' => $cat_post,
'label' => __('Select Category to display Activities','adventure-resort'),
'section' => 'adventure_resort_services_section',
));
for ($i=1; $i <=6; $i++) {
$wp_customize->add_setting('adventure_resort_services_icon'.$i,array(
'default' => 'fas fa-mountain',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_services_icon'.$i,array(
'label' => esc_html__('Activities Icon ','adventure-resort').$i,
'section' => 'adventure_resort_services_section',
'setting' => 'adventure_resort_services_icon'.$i,
'type' => 'text',
'description' => __('Select font awesome icons Click Here for select icon. for eg: fas fa-mountain','adventure-resort')
));
}
// Pro Version
$wp_customize->add_setting( 'pro_version_service_setting', array(
'sanitize_callback' => 'adventure_resort_sanitize_custom_control'
));
$wp_customize->add_control( new Adventure_Resort_Customize_Pro_Version ( $wp_customize,'pro_version_service_setting', array(
'section' => 'adventure_resort_services_section',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'adventure-resort' ),
'description' => esc_url( ADVENTURE_RESORT_URL ),
'priority' => 100
)));
// Post Settings
$wp_customize->add_section('adventure_resort_post_settings',array(
'title' => esc_html__('Post Settings','adventure-resort'),
'priority' =>40,
));
$wp_customize->add_setting('adventure_resort_post_page_title',array(
'sanitize_callback' => 'adventure_resort_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('adventure_resort_post_page_title',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Post Page Title', 'adventure-resort'),
'section' => 'adventure_resort_post_settings',
'description' => esc_html__('Check this box to enable title on post page.', 'adventure-resort'),
));
$wp_customize->add_setting('adventure_resort_post_page_meta',array(
'sanitize_callback' => 'adventure_resort_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('adventure_resort_post_page_meta',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Post Page Meta', 'adventure-resort'),
'section' => 'adventure_resort_post_settings',
'description' => esc_html__('Check this box to enable meta on post page.', 'adventure-resort'),
));
$wp_customize->add_setting('adventure_resort_post_page_thumb',array(
'sanitize_callback' => 'adventure_resort_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('adventure_resort_post_page_thumb',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Post Page Thumbnail', 'adventure-resort'),
'section' => 'adventure_resort_post_settings',
'description' => esc_html__('Check this box to enable thumbnail on post page.', 'adventure-resort'),
));
$wp_customize->add_setting( 'adventure_resort_post_page_image_border_radius', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'adventure_resort_sanitize_number_range'
) );
$wp_customize->add_control( 'adventure_resort_post_page_image_border_radius', array(
'label' => esc_html__( 'Post Page Image Border Radius','adventure-resort' ),
'section' => 'adventure_resort_post_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
$wp_customize->add_setting( 'adventure_resort_post_page_image_box_shadow', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'adventure_resort_sanitize_number_range'
) );
$wp_customize->add_control( 'adventure_resort_post_page_image_box_shadow', array(
'label' => esc_html__( 'Post Page Image Box Shadow','adventure-resort' ),
'section' => 'adventure_resort_post_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
$wp_customize->add_setting('adventure_resort_post_page_content',array(
'sanitize_callback' => 'adventure_resort_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('adventure_resort_post_page_content',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Post Page Content', 'adventure-resort'),
'section' => 'adventure_resort_post_settings',
'description' => esc_html__('Check this box to enable content on post page.', 'adventure-resort'),
));
$wp_customize->add_setting('adventure_resort_post_page_excerpt_length',array(
'sanitize_callback' => 'adventure_resort_sanitize_number_range',
'default' => 30,
));
$wp_customize->add_control('adventure_resort_post_page_excerpt_length',array(
'label' => esc_html__('Post Page Excerpt Length', 'adventure-resort'),
'section' => 'adventure_resort_post_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
));
$wp_customize->add_setting('adventure_resort_post_page_excerpt_suffix',array(
'sanitize_callback' => 'sanitize_text_field',
'default' => '[...]',
));
$wp_customize->add_control('adventure_resort_post_page_excerpt_suffix',array(
'type' => 'text',
'label' => esc_html__('Post Page Excerpt Suffix', 'adventure-resort'),
'section' => 'adventure_resort_post_settings',
'description' => esc_html__('For Ex. [...], etc', 'adventure-resort'),
));
$wp_customize->add_setting('adventure_resort_post_page_pagination',array(
'sanitize_callback' => 'adventure_resort_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('adventure_resort_post_page_pagination',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Post Page Pagination', 'adventure-resort'),
'section' => 'adventure_resort_post_settings',
'description' => esc_html__('Check this box to enable pagination on post page.', 'adventure-resort'),
));
$wp_customize->add_setting( 'adventure_resort_blog_pagination_type', array(
'default' => 'blog-nav-numbers',
'sanitize_callback' => 'adventure_resort_sanitize_choices'
));
$wp_customize->add_control( 'adventure_resort_blog_pagination_type', array(
'section' => 'adventure_resort_post_settings',
'type' => 'select',
'label' => __( 'Post Pagination Type', 'adventure-resort' ),
'choices' => array(
'blog-nav-numbers' => __( 'Numeric', 'adventure-resort' ),
'next-prev' => __( 'Older/Newer Posts', 'adventure-resort' ),
)
));
$wp_customize->add_setting('adventure_resort_single_post_thumb',array(
'sanitize_callback' => 'adventure_resort_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('adventure_resort_single_post_thumb',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Single Post Thumbnail', 'adventure-resort'),
'section' => 'adventure_resort_post_settings',
'description' => esc_html__('Check this box to enable post thumbnail on single post.', 'adventure-resort'),
));
// Single Post Page Settings
$wp_customize->add_setting( 'adventure_resort_single_post_page_image_border_radius', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'adventure_resort_sanitize_number_range'
) );
$wp_customize->add_control( 'adventure_resort_single_post_page_image_border_radius', array(
'label' => esc_html__( 'Single Post Page Image Border Radius','adventure-resort' ),
'section' => 'adventure_resort_post_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
$wp_customize->add_setting( 'adventure_resort_single_post_page_image_box_shadow', array(
'default' => '0',
'transport' => 'refresh',
'sanitize_callback' => 'adventure_resort_sanitize_number_range'
) );
$wp_customize->add_control( 'adventure_resort_single_post_page_image_box_shadow', array(
'label' => esc_html__( 'Single Post Page Image Box Shadow','adventure-resort' ),
'section' => 'adventure_resort_post_settings',
'type' => 'range',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 50,
),
) );
$wp_customize->add_setting('adventure_resort_single_post_meta',array(
'sanitize_callback' => 'adventure_resort_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('adventure_resort_single_post_meta',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Single Post Meta', 'adventure-resort'),
'section' => 'adventure_resort_post_settings',
'description' => esc_html__('Check this box to enable single post meta such as post date, author, category, comment etc.', 'adventure-resort'),
));
$wp_customize->add_setting('adventure_resort_single_post_title',array(
'sanitize_callback' => 'adventure_resort_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('adventure_resort_single_post_title',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Single Post Title', 'adventure-resort'),
'section' => 'adventure_resort_post_settings',
'description' => esc_html__('Check this box to enable title on single post.', 'adventure-resort'),
));
$wp_customize->add_setting('adventure_resort_single_post_page_content',array(
'sanitize_callback' => 'adventure_resort_sanitize_checkbox',
'default' => 1,
));
$wp_customize->add_control('adventure_resort_single_post_page_content',array(
'type' => 'checkbox',
'label' => esc_html__('Enable Single Post Page Content', 'adventure-resort'),
'section' => 'adventure_resort_post_settings',
'description' => esc_html__('Check this box to enable content on single post page.', 'adventure-resort'),
));
$wp_customize->add_setting('adventure_resort_single_post_navigation_show_hide',array(
'default' => true,
'sanitize_callback' => 'adventure_resort_sanitize_checkbox'
));
$wp_customize->add_control('adventure_resort_single_post_navigation_show_hide',array(
'type' => 'checkbox',
'label' => __('Show / Hide Post Navigation','adventure-resort'),
'section' => 'adventure_resort_post_settings',
));
$wp_customize->add_setting('adventure_resort_single_post_comment_title',array(
'default'=> 'Leave a Reply',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_single_post_comment_title',array(
'label' => __('Add Comment Title','adventure-resort'),
'input_attrs' => array(
'placeholder' => __( 'Leave a Reply', 'adventure-resort' ),
),
'section'=> 'adventure_resort_post_settings',
'type'=> 'text'
));
$wp_customize->add_setting('adventure_resort_single_post_comment_btn_text',array(
'default'=> 'Post Comment',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('adventure_resort_single_post_comment_btn_text',array(
'label' => __('Add Comment Button Text','adventure-resort'),
'input_attrs' => array(
'placeholder' => __( 'Post Comment', 'adventure-resort' ),
),
'section'=> 'adventure_resort_post_settings',
'type'=> 'text'
));
// Pro Version
$wp_customize->add_setting( 'pro_version_post_setting', array(
'sanitize_callback' => 'adventure_resort_sanitize_custom_control'
));
$wp_customize->add_control( new Adventure_Resort_Customize_Pro_Version ( $wp_customize,'pro_version_post_setting', array(
'section' => 'adventure_resort_post_settings',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'adventure-resort' ),
'description' => esc_url( ADVENTURE_RESORT_URL ),
'priority' => 100
)));
// Page Settings
$wp_customize->add_section('adventure_resort_page_settings',array(
'title' => esc_html__('Page Settings','adventure-resort'),
'priority' => 40,
));
$wp_customize->add_setting( 'adventure_resort_single_page_sidebar_layout', array(
'default' => 'No Sidebar',
'sanitize_callback' => 'adventure_resort_sanitize_choices'
));
$wp_customize->add_control( 'adventure_resort_single_page_sidebar_layout', array(
'section' => 'adventure_resort_page_settings',
'type' => 'select',
'label' => __( 'Single Page Sidebar Position', 'adventure-resort' ),
'choices' => array(
'No Sidebar' => __( 'No Sidebar', 'adventure-resort' ),
'Right Side' => __( 'Right Side', 'adventure-resort' ),
'Left Side' => __( 'Left Side', 'adventure-resort' ),
)
));
// Pro Version
$wp_customize->add_setting( 'pro_version_page_setting', array(
'sanitize_callback' => 'adventure_resort_sanitize_custom_control'
));
$wp_customize->add_control( new Adventure_Resort_Customize_Pro_Version ( $wp_customize,'pro_version_page_setting', array(
'section' => 'adventure_resort_page_settings',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'adventure-resort' ),
'description' => esc_url( ADVENTURE_RESORT_URL ),
'priority' => 100
)));
// Footer
$wp_customize->add_section('adventure_resort_site_footer_section', array(
'title' => esc_html__('Footer', 'adventure-resort'),
));
$wp_customize->add_setting('adventure_resort_footer_widget_content_alignment',array(
'default' => 'Left',
'transport' => 'refresh',
'sanitize_callback' => 'adventure_resort_sanitize_choices'
));
$wp_customize->add_control('adventure_resort_footer_widget_content_alignment',array(
'type' => 'select',
'label' => __('Footer Widget Content Alignment','adventure-resort'),
'section' => 'adventure_resort_site_footer_section',
'choices' => array(
'Left' => __('Left','adventure-resort'),
'Center' => __('Center','adventure-resort'),
'Right' => __('Right','adventure-resort')
),
) );
$wp_customize->add_setting( 'adventure_resort_footer_bg_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'adventure_resort_footer_bg_color', array(
'label' => __('Footer Background Color', 'adventure-resort'),
'section' => 'adventure_resort_site_footer_section',
'settings' => 'adventure_resort_footer_bg_color',
)));
$wp_customize->add_setting( 'adventure_resort_footer_content_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'adventure_resort_footer_content_color', array(
'label' => __('Footer Content Color', 'adventure-resort'),
'section' => 'adventure_resort_site_footer_section',
'settings' => 'adventure_resort_footer_content_color',
)));
$wp_customize->add_setting('adventure_resort_show_hide_copyright',array(
'default' => true,
'sanitize_callback' => 'adventure_resort_sanitize_checkbox'
));
$wp_customize->add_control('adventure_resort_show_hide_copyright',array(
'type' => 'checkbox',
'label' => __('Show / Hide Copyright','adventure-resort'),
'section' => 'adventure_resort_site_footer_section',
));
$wp_customize->add_setting('adventure_resort_footer_text_setting', array(
'sanitize_callback' => 'sanitize_text_field',
));
$wp_customize->add_control('adventure_resort_footer_text_setting', array(
'label' => __('Replace the footer text', 'adventure-resort'),
'section' => 'adventure_resort_site_footer_section',
'type' => 'text',
));
$wp_customize->add_setting('adventure_resort_copyright_content_alignment',array(
'default' => 'Center',
'transport' => 'refresh',
'sanitize_callback' => 'adventure_resort_sanitize_choices'
));
$wp_customize->add_control('adventure_resort_copyright_content_alignment',array(
'type' => 'select',
'label' => __('Copyright Content Alignment','adventure-resort'),
'section' => 'adventure_resort_site_footer_section',
'choices' => array(
'Left' => __('Left','adventure-resort'),
'Center' => __('Center','adventure-resort'),
'Right' => __('Right','adventure-resort')
),
) );
$wp_customize->add_setting( 'adventure_resort_copyright_text_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'adventure_resort_copyright_text_color', array(
'label' => __('Copyright Text Color', 'adventure-resort'),
'section' => 'adventure_resort_site_footer_section',
'settings' => 'adventure_resort_copyright_text_color',
)));
// Pro Version
$wp_customize->add_setting( 'pro_version_footer_setting', array(
'sanitize_callback' => 'adventure_resort_sanitize_custom_control'
));
$wp_customize->add_control( new Adventure_Resort_Customize_Pro_Version ( $wp_customize,'pro_version_footer_setting', array(
'section' => 'adventure_resort_site_footer_section',
'type' => 'pro_options',
'label' => esc_html__( 'Customizer Options', 'adventure-resort' ),
'description' => esc_url( ADVENTURE_RESORT_URL ),
'priority' => 100
)));
}
add_action('customize_register', 'adventure_resort_customize_register');
/**
* Render the site title for the selective refresh partial.
*
* @return void
*/
function adventure_resort_customize_partial_blogname(){
bloginfo('name');
}
/**
* Render the site tagline for the selective refresh partial.
*
* @return void
*/
function adventure_resort_customize_partial_blogdescription(){
bloginfo('description');
}
/**
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
*/
function adventure_resort_customize_preview_js(){
wp_enqueue_script('adventure-resort-customizer', esc_url(get_template_directory_uri()) . '/assets/js/customizer.js', array('customize-preview'), '20151215', true);
}
add_action('customize_preview_init', 'adventure_resort_customize_preview_js');
/*
** Load dynamic logic for the customizer controls area.
*/
function adventure_resort_panels_js() {
wp_enqueue_style( 'adventure-resort-customizer-layout-css', get_theme_file_uri( '/assets/css/customizer-layout.css' ) );
wp_enqueue_script( 'adventure-resort-customize-layout', get_theme_file_uri( '/assets/js/customize-layout.js' ), array(), '1.2', true );
}
add_action( 'customize_controls_enqueue_scripts', 'adventure_resort_panels_js' );