/home/lnzliplg/www/wp-content/themes/lawyer-hub/inc/customizer.php
<?php
/**
* Lawyer Hub: Customizer
*
* @package Lawyer Hub
* @subpackage lawyer_hub
*/
/**
* Add postMessage support for site title and description for the Theme Customizer.
*
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
*/
function lawyer_hub_customize_register( $wp_customize ) {
// Pro Version
class Lawyer_Hub_Customize_Pro_Version extends WP_Customize_Control {
public $type = 'pro_options';
public function render_content() {
echo '<span>Unlock Premium <strong>'. esc_html( $this->label ) .'</strong>? </span>';
echo '<a href="'. esc_url($this->description) .'" target="_blank">';
echo '<span class="dashicons dashicons-info"></span>';
echo '<strong> '. esc_html( LAWYER_HUB_BUY_TEXT,'lawyer-hub' ) .'<strong></a>';
echo '</a>';
}
}
// Custom Controls
function lawyer_hub_sanitize_custom_control( $input ) {
return $input;
}
require get_parent_theme_file_path('/inc/controls/icon-changer.php');
require get_parent_theme_file_path('/inc/controls/range-slider-control.php');
// Register the custom control type.
$wp_customize->register_control_type( 'Lawyer_Hub_Toggle_Control' );
//Register the sortable control type.
$wp_customize->register_control_type( 'Lawyer_Hub_Control_Sortable' );
//add home page setting pannel
$wp_customize->add_panel( 'lawyer_hub_panel_id', array(
'priority' => 10,
'capability' => 'edit_theme_options',
'theme_supports' => '',
'title' => __( 'Custom Home page', 'lawyer-hub' ),
'description' => __( 'Description of what this panel does.', 'lawyer-hub' ),
) );
//TP General Option
$wp_customize->add_section('lawyer_hub_tp_general_settings',array(
'title' => __('TP General Option', 'lawyer-hub'),
'priority' => 1,
'panel' => 'lawyer_hub_panel_id'
) );
$wp_customize->add_setting('lawyer_hub_tp_body_layout_settings',array(
'default' => 'Full',
'sanitize_callback' => 'lawyer_hub_sanitize_choices'
));
$wp_customize->add_control('lawyer_hub_tp_body_layout_settings',array(
'type' => 'radio',
'label' => __('Body Layout Setting', 'lawyer-hub'),
'description' => __('This option work for complete body, if you want to set the complete website in container.', 'lawyer-hub'),
'section' => 'lawyer_hub_tp_general_settings',
'choices' => array(
'Full' => __('Full','lawyer-hub'),
'Container' => __('Container','lawyer-hub'),
'Container Fluid' => __('Container Fluid','lawyer-hub')
),
) );
// Add Settings and Controls for Post Layout
$wp_customize->add_setting('lawyer_hub_sidebar_post_layout',array(
'default' => 'right',
'sanitize_callback' => 'lawyer_hub_sanitize_choices'
));
$wp_customize->add_control('lawyer_hub_sidebar_post_layout',array(
'type' => 'radio',
'label' => __('Post Sidebar Position', 'lawyer-hub'),
'description' => __('This option work for blog page, archive page and search page.', 'lawyer-hub'),
'section' => 'lawyer_hub_tp_general_settings',
'choices' => array(
'full' => __('Full','lawyer-hub'),
'left' => __('Left','lawyer-hub'),
'right' => __('Right','lawyer-hub'),
'three-column' => __('Three Columns','lawyer-hub'),
'four-column' => __('Four Columns','lawyer-hub'),
'grid' => __('Grid Layout','lawyer-hub')
),
) );
// Add Settings and Controls for Post sidebar Layout
$wp_customize->add_setting('lawyer_hub_sidebar_single_post_layout',array(
'default' => 'right',
'sanitize_callback' => 'lawyer_hub_sanitize_choices'
));
$wp_customize->add_control('lawyer_hub_sidebar_single_post_layout',array(
'type' => 'radio',
'label' => __('Single Post Sidebar Position', 'lawyer-hub'),
'description' => __('This option work for single blog page.', 'lawyer-hub'),
'section' => 'lawyer_hub_tp_general_settings',
'choices' => array(
'full' => __('Full','lawyer-hub'),
'left' => __('Left','lawyer-hub'),
'right' => __('Right','lawyer-hub'),
),
) );
// Add Settings and Controls for Page Layout
$wp_customize->add_setting('lawyer_hub_sidebar_page_layout',array(
'default' => 'right',
'sanitize_callback' => 'lawyer_hub_sanitize_choices'
));
$wp_customize->add_control('lawyer_hub_sidebar_page_layout',array(
'type' => 'radio',
'label' => __('Page Sidebar Position', 'lawyer-hub'),
'description' => __('This option work for pages.', 'lawyer-hub'),
'section' => 'lawyer_hub_tp_general_settings',
'choices' => array(
'full' => __('Full','lawyer-hub'),
'left' => __('Left','lawyer-hub'),
'right' => __('Right','lawyer-hub')
),
) );
$wp_customize->add_setting( 'lawyer_hub_sticky', array(
'default' => false,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_sticky', array(
'label' => esc_html__( 'Show / Hide Sticky Header', 'lawyer-hub' ),
'section' => 'lawyer_hub_tp_general_settings',
'type' => 'toggle',
'settings' => 'lawyer_hub_sticky',
) ) );
//tp typography option
$lawyer_hub_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('lawyer_hub_typography_option',array(
'title' => __('TP Typography Option', 'lawyer-hub'),
'priority' => 2,
'panel' => 'lawyer_hub_panel_id'
));
$wp_customize->add_setting('lawyer_hub_heading_font_family', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'lawyer_hub_sanitize_choices',
));
$wp_customize->add_control( 'lawyer_hub_heading_font_family', array(
'section' => 'lawyer_hub_typography_option',
'label' => __('heading Fonts', 'lawyer-hub'),
'type' => 'select',
'choices' => $lawyer_hub_font_array,
));
$wp_customize->add_setting('lawyer_hub_body_font_family', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'lawyer_hub_sanitize_choices',
));
$wp_customize->add_control( 'lawyer_hub_body_font_family', array(
'section' => 'lawyer_hub_typography_option',
'label' => __('Body Fonts', 'lawyer-hub'),
'type' => 'select',
'choices' => $lawyer_hub_font_array,
));
//TP Color Option
$wp_customize->add_section('lawyer_hub_color_option',array(
'title' => __('TP Color Option', 'lawyer-hub'),
'panel' => 'lawyer_hub_panel_id',
'priority' => 2,
) );
$wp_customize->add_setting( 'lawyer_hub_tp_color_option', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'lawyer_hub_tp_color_option', array(
'label' => __('Theme First Color', 'lawyer-hub'),
'description' => __('It will change the complete theme color in one click.', 'lawyer-hub'),
'section' => 'lawyer_hub_color_option',
'settings' => 'lawyer_hub_tp_color_option',
)));
$wp_customize->add_setting( 'lawyer_hub_tp_color_option_link', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'lawyer_hub_tp_color_option_link', array(
'label' => __('Theme Second Color', 'lawyer-hub'),
'description' => __('It will change the complete theme hover link color in one click.', 'lawyer-hub'),
'section' => 'lawyer_hub_color_option',
'settings' => 'lawyer_hub_tp_color_option_link',
)));
//TP Preloader Option
$wp_customize->add_section('lawyer_hub_prealoader_option',array(
'title' => __('TP Preloader Option', 'lawyer-hub'),
'panel' => 'lawyer_hub_panel_id',
'priority' => 2,
) );
$wp_customize->add_setting( 'lawyer_hub_preloader_show_hide', array(
'default' => false,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_preloader_show_hide', array(
'label' => esc_html__( 'Show / Hide Preloader Option', 'lawyer-hub' ),
'section' => 'lawyer_hub_prealoader_option',
'type' => 'toggle',
'settings' => 'lawyer_hub_preloader_show_hide',
) ) );
$wp_customize->add_setting( 'lawyer_hub_tp_preloader_color1_option', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'lawyer_hub_tp_preloader_color1_option', array(
'description' => __('It will change the complete theme preloader ring 1 color in one click.', 'lawyer-hub'),
'section' => 'lawyer_hub_prealoader_option',
'settings' => 'lawyer_hub_tp_preloader_color1_option',
)));
$wp_customize->add_setting( 'lawyer_hub_tp_preloader_color2_option', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'lawyer_hub_tp_preloader_color2_option', array(
'description' => __('It will change the complete theme preloader ring 2 color in one click.', 'lawyer-hub'),
'section' => 'lawyer_hub_prealoader_option',
'settings' => 'lawyer_hub_tp_preloader_color2_option',
)));
$wp_customize->add_setting( 'lawyer_hub_tp_preloader_bg_option', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'lawyer_hub_tp_preloader_bg_option', array(
'description' => __('It will change the complete theme preloader bg color in one click.', 'lawyer-hub'),
'section' => 'lawyer_hub_prealoader_option',
'settings' => 'lawyer_hub_tp_preloader_bg_option',
)));
// Pro Version
$wp_customize->add_setting( 'lawyer_hub_preloader_pro_version_logo', array(
'sanitize_callback' => 'lawyer_hub_sanitize_custom_control'
));
$wp_customize->add_control( new Lawyer_Hub_Customize_Pro_Version ( $wp_customize,'lawyer_hub_preloader_pro_version_logo', array(
'section' => 'lawyer_hub_prealoader_option',
'type' => 'pro_options',
'label' => esc_html__( 'Features ', 'lawyer-hub' ),
'description' => esc_url( LAWYER_HUB_PRO_THEME_URL ),
'priority' => 100
)));
//TP Blog Option
$wp_customize->add_section('lawyer_hub_blog_option',array(
'title' => __('TP Blog Option', 'lawyer-hub'),
'priority' => 1,
'panel' => 'lawyer_hub_panel_id'
) );
$wp_customize->add_setting('lawyer_hub_edit_blog_page_title',array(
'default'=> __('Home','lawyer-hub'),
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('lawyer_hub_edit_blog_page_title',array(
'label' => __('Change Blog Page Title','lawyer-hub'),
'section'=> 'lawyer_hub_blog_option',
'type'=> 'text'
));
$wp_customize->add_setting('lawyer_hub_edit_blog_page_description',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('lawyer_hub_edit_blog_page_description',array(
'label' => __('Add Blog Page Description','lawyer-hub'),
'section'=> 'lawyer_hub_blog_option',
'type'=> 'text'
));
/** Meta Order */
$wp_customize->add_setting('blog_meta_order', array(
'default' => array('date', 'author', 'comment', 'category', 'time'),
'sanitize_callback' => 'lawyer_hub_sanitize_sortable',
));
$wp_customize->add_control(new Lawyer_Hub_Control_Sortable($wp_customize, 'blog_meta_order', array(
'label' => esc_html__('Meta Order', 'lawyer-hub'),
'description' => __('Drag & Drop post items to re-arrange the order and also hide and show items as per the need by clicking on the eye icon.', 'lawyer-hub') ,
'section' => 'lawyer_hub_blog_option',
'choices' => array(
'date' => __('date', 'lawyer-hub') ,
'author' => __('author', 'lawyer-hub') ,
'comment' => __('comment', 'lawyer-hub') ,
'category' => __('category', 'lawyer-hub') ,
'time' => __('time', 'lawyer-hub') ,
) ,
)));
$wp_customize->add_setting( 'lawyer_hub_excerpt_count', array(
'default' => 35,
'type' => 'theme_mod',
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_number_range',
'sanitize_js_callback' => 'absint',
) );
$wp_customize->add_control( 'lawyer_hub_excerpt_count', array(
'label' => esc_html__( 'Edit Excerpt Limit','lawyer-hub' ),
'section' => 'lawyer_hub_blog_option',
'type' => 'number',
'input_attrs' => array(
'step' => 2,
'min' => 0,
'max' => 50,
),
) );
$wp_customize->add_setting('lawyer_hub_show_first_caps',array(
'default' => false,
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
));
$wp_customize->add_control( 'lawyer_hub_show_first_caps',array(
'label' => esc_html__('First Cap (First Capital Letter)', 'lawyer-hub'),
'type' => 'checkbox',
'section' => 'lawyer_hub_blog_option',
));
$wp_customize->add_setting('lawyer_hub_read_more_text',array(
'default'=> __('Read More','lawyer-hub'),
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('lawyer_hub_read_more_text',array(
'label' => __('Edit Button Text','lawyer-hub'),
'section'=> 'lawyer_hub_blog_option',
'type'=> 'text'
));
$wp_customize->add_setting('lawyer_hub_post_image_round', array(
'default' => '0',
'sanitize_callback' => 'lawyer_hub_sanitize_number_range',
));
$wp_customize->add_control(new lawyer_hub_Range_Slider($wp_customize, 'lawyer_hub_post_image_round', array(
'section' => 'lawyer_hub_blog_option',
'label' => esc_html__('Edit Post Image Border Radius', 'lawyer-hub'),
'input_attrs' => array(
'min' => 0,
'max' => 180,
'step' => 1
)
)));
$wp_customize->add_setting('lawyer_hub_post_image_width', array(
'default' => '',
'sanitize_callback' => 'lawyer_hub_sanitize_number_range',
));
$wp_customize->add_control(new lawyer_hub_Range_Slider($wp_customize, 'lawyer_hub_post_image_width', array(
'section' => 'lawyer_hub_blog_option',
'label' => esc_html__('Edit Post Image Width', 'lawyer-hub'),
'input_attrs' => array(
'min' => 0,
'max' => 367,
'step' => 1
)
)));
$wp_customize->add_setting('lawyer_hub_post_image_length', array(
'default' => '',
'sanitize_callback' => 'lawyer_hub_sanitize_number_range',
));
$wp_customize->add_control(new lawyer_hub_Range_Slider($wp_customize, 'lawyer_hub_post_image_length', array(
'section' => 'lawyer_hub_blog_option',
'label' => esc_html__('Edit Post Image height', 'lawyer-hub'),
'input_attrs' => array(
'min' => 0,
'max' => 900,
'step' => 1
)
)));
$wp_customize->add_setting( 'lawyer_hub_remove_read_button', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_remove_read_button', array(
'label' => esc_html__( 'Show / Hide Read More Button', 'lawyer-hub' ),
'section' => 'lawyer_hub_blog_option',
'type' => 'toggle',
'settings' => 'lawyer_hub_remove_read_button',
) ) );
$wp_customize->add_setting( 'lawyer_hub_remove_tags', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_remove_tags', array(
'label' => esc_html__( 'Show / Hide Tags Option', 'lawyer-hub' ),
'section' => 'lawyer_hub_blog_option',
'type' => 'toggle',
'settings' => 'lawyer_hub_remove_tags',
) ) );
$wp_customize->add_setting( 'lawyer_hub_remove_category', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_remove_category', array(
'label' => esc_html__( 'Show / Hide Category Option', 'lawyer-hub' ),
'section' => 'lawyer_hub_blog_option',
'type' => 'toggle',
'settings' => 'lawyer_hub_remove_category',
) ) );
$wp_customize->selective_refresh->add_partial( 'lawyer_hub_remove_category', array(
'selector' => '.box-content a[rel="category"]',
'render_callback' => 'lawyer_hub_customize_partial_lawyer_hub_remove_category',
));
$wp_customize->add_setting( 'lawyer_hub_remove_comment', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_remove_comment', array(
'label' => esc_html__( 'Show / Hide Comment Form', 'lawyer-hub' ),
'section' => 'lawyer_hub_blog_option',
'type' => 'toggle',
'settings' => 'lawyer_hub_remove_comment',
) ) );
$wp_customize->add_setting( 'lawyer_hub_remove_related_post', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_remove_related_post', array(
'label' => esc_html__( 'Show / Hide Related Post', 'lawyer-hub' ),
'section' => 'lawyer_hub_blog_option',
'type' => 'toggle',
'settings' => 'lawyer_hub_remove_related_post',
) ) );
$wp_customize->add_setting('lawyer_hub_related_post_heading',array(
'default'=> __('Related Posts','lawyer-hub'),
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('lawyer_hub_related_post_heading',array(
'label' => __('Related Post Title','lawyer-hub'),
'section'=> 'lawyer_hub_blog_option',
'type'=> 'text'
));
$wp_customize->add_setting( 'lawyer_hub_related_post_per_page', array(
'default' => 3,
'type' => 'theme_mod',
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_number_range',
'sanitize_js_callback' => 'absint',
) );
$wp_customize->add_control( 'lawyer_hub_related_post_per_page', array(
'label' => esc_html__( 'Related Post Per Page','lawyer-hub' ),
'section' => 'lawyer_hub_blog_option',
'type' => 'number',
'input_attrs' => array(
'step' => 1,
'min' => 3,
'max' => 9,
),
) );
$wp_customize->add_setting( 'lawyer_hub_related_post_per_columns', array(
'default' => 3,
'type' => 'theme_mod',
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_number_range',
'sanitize_js_callback' => 'absint',
) );
$wp_customize->add_control( 'lawyer_hub_related_post_per_columns', array(
'label' => esc_html__( 'Related Post Per Row','lawyer-hub' ),
'section' => 'lawyer_hub_blog_option',
'type' => 'number',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 4,
),
) );
$wp_customize->add_setting('lawyer_hub_post_layout',array(
'default' => 'image-content',
'sanitize_callback' => 'lawyer_hub_sanitize_choices'
));
$wp_customize->add_control('lawyer_hub_post_layout',array(
'type' => 'radio',
'label' => __('Post Layout', 'lawyer-hub'),
'description' => __( 'Control Works only for full,left and right sidebar position in archieve posts', 'lawyer-hub' ),
'section' => 'lawyer_hub_blog_option',
'choices' => array(
'image-content' => __('Media-Content','lawyer-hub'),
'content-image' => __('Content-Media','lawyer-hub'),
),
) );
//TP Single Blog Option
$wp_customize->add_section('lawyer_hub_single_blog_option',array(
'title' => __('Single Post Option', 'lawyer-hub'),
'priority' => 1,
'panel' => 'lawyer_hub_panel_id'
) );
/** Meta Order */
$wp_customize->add_setting('lawyer_hub_single_blog_meta_order', array(
'default' => array('date', 'author', 'comment','category', 'time'),
'sanitize_callback' => 'lawyer_hub_sanitize_sortable',
));
$wp_customize->add_control(new Lawyer_Hub_Control_Sortable($wp_customize, 'lawyer_hub_single_blog_meta_order', array(
'label' => esc_html__('Meta Order', 'lawyer-hub'),
'description' => __('Drag & Drop post items to re-arrange the order and also hide and show items as per the need by clicking on the eye icon.', 'lawyer-hub') ,
'section' => 'lawyer_hub_single_blog_option',
'choices' => array(
'date' => __('date', 'lawyer-hub') ,
'author' => __('author', 'lawyer-hub') ,
'comment' => __('comment', 'lawyer-hub') ,
'category' => __('category', 'lawyer-hub') ,
'time' => __('time', 'lawyer-hub') ,
) ,
)));
$wp_customize->add_setting('lawyer_hub_single_post_date_icon',array(
'default' => 'far fa-calendar-alt',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new lawyer_hub_Icon_Changer(
$wp_customize,'lawyer_hub_single_post_date_icon',array(
'label' => __('Change Date Icon','lawyer-hub'),
'transport' => 'refresh',
'section' => 'lawyer_hub_single_blog_option',
'type' => 'lawyer-hub-icon'
)));
$wp_customize->add_setting('lawyer_hub_single_post_author_icon',array(
'default' => 'fas fa-user',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new lawyer_hub_Icon_Changer(
$wp_customize,'lawyer_hub_single_post_author_icon',array(
'label' => __('Change Author Icon','lawyer-hub'),
'transport' => 'refresh',
'section' => 'lawyer_hub_single_blog_option',
'type' => 'lawyer-hub-icon'
)));
$wp_customize->add_setting('lawyer_hub_single_post_comment_icon',array(
'default' => 'fas fa-comments',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new lawyer_hub_Icon_Changer(
$wp_customize,'lawyer_hub_single_post_comment_icon',array(
'label' => __('Change Comment Icon','lawyer-hub'),
'transport' => 'refresh',
'section' => 'lawyer_hub_single_blog_option',
'type' => 'lawyer-hub-icon'
)));
$wp_customize->add_setting('lawyer_hub_single_post_category_icon',array(
'default' => 'fas fa-list',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new lawyer_hub_Icon_Changer(
$wp_customize,'lawyer_hub_single_post_category_icon',array(
'label' => __('Change Category Icon','lawyer-hub'),
'transport' => 'refresh',
'section' => 'lawyer_hub_single_blog_option',
'type' => 'lawyer-hub-icon'
)));
$wp_customize->add_setting('lawyer_hub_single_post_time_icon',array(
'default' => 'fas fa-clock',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new lawyer_hub_Icon_Changer(
$wp_customize,'lawyer_hub_single_post_time_icon',array(
'label' => __('Change Time Icon','lawyer-hub'),
'transport' => 'refresh',
'section' => 'lawyer_hub_single_blog_option',
'type' => 'lawyer-hub-icon'
)));
//MENU TYPOGRAPHY
$wp_customize->add_section( 'lawyer_hub_menu_typography', array(
'title' => __( 'Menu Typography', 'lawyer-hub' ),
'priority' => 2,
'panel' => 'lawyer_hub_panel_id'
) );
$wp_customize->add_setting('lawyer_hub_menu_font_family', array(
'default' => '',
'capability' => 'edit_theme_options',
'sanitize_callback' => 'lawyer_hub_sanitize_choices',
));
$wp_customize->add_control( 'lawyer_hub_menu_font_family', array(
'section' => 'lawyer_hub_menu_typography',
'label' => __('Menu Fonts', 'lawyer-hub'),
'type' => 'select',
'choices' => $lawyer_hub_font_array,
));
$wp_customize->add_setting('lawyer_hub_menu_font_weight',array(
'default' => '',
'sanitize_callback' => 'lawyer_hub_sanitize_choices'
));
$wp_customize->add_control('lawyer_hub_menu_font_weight',array(
'type' => 'radio',
'label' => __('Font Weight', 'lawyer-hub'),
'section' => 'lawyer_hub_menu_typography',
'type' => 'select',
'choices' => array(
'100' => __('100','lawyer-hub'),
'200' => __('200','lawyer-hub'),
'300' => __('300','lawyer-hub'),
'400' => __('400','lawyer-hub'),
'500' => __('500','lawyer-hub'),
'600' => __('600','lawyer-hub'),
'700' => __('700','lawyer-hub'),
'800' => __('800','lawyer-hub'),
'900' => __('900','lawyer-hub')
),
) );
$wp_customize->add_setting('lawyer_hub_menu_text_tranform',array(
'default' => '',
'sanitize_callback' => 'lawyer_hub_sanitize_choices'
));
$wp_customize->add_control('lawyer_hub_menu_text_tranform',array(
'type' => 'select',
'label' => __('Menu Text Transform','lawyer-hub'),
'section' => 'lawyer_hub_menu_typography',
'choices' => array(
'Uppercase' => __('Uppercase','lawyer-hub'),
'Lowercase' => __('Lowercase','lawyer-hub'),
'Capitalize' => __('Capitalize','lawyer-hub'),
),
) );
$wp_customize->add_setting('lawyer_hub_menu_font_size', array(
'default' => '',
'sanitize_callback' => 'lawyer_hub_sanitize_number_range',
));
$wp_customize->add_control(new Lawyer_Hub_Range_Slider($wp_customize, 'lawyer_hub_menu_font_size', array(
'section' => 'lawyer_hub_menu_typography',
'label' => esc_html__('Font Size', 'lawyer-hub'),
'input_attrs' => array(
'min' => 0,
'max' => 15,
'step' => 1
)
)));
$wp_customize->add_setting('lawyer_hub_menus_item_style',array(
'default' => '',
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_choices'
));
$wp_customize->add_control('lawyer_hub_menus_item_style',array(
'type' => 'select',
'section' => 'lawyer_hub_menu_typography',
'label' => __('Menu Hover Effect','lawyer-hub'),
'choices' => array(
'None' => __('None','lawyer-hub'),
'Zoom In' => __('Zoom In','lawyer-hub'),
),
) );
$wp_customize->add_setting( 'lawyer_hub_menu_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'lawyer_hub_menu_color', array(
'label' => __('Change Menu Color', 'lawyer-hub'),
'section' => 'lawyer_hub_menu_typography',
'settings' => 'lawyer_hub_menu_color',
)));
// Pro Version
$wp_customize->add_setting( 'lawyer_hub_menu_pro_version_logo', array(
'sanitize_callback' => 'lawyer_hub_sanitize_custom_control'
));
$wp_customize->add_control( new Lawyer_Hub_Customize_Pro_Version ( $wp_customize,'lawyer_hub_menu_pro_version_logo', array(
'section' => 'lawyer_hub_menu_typography',
'type' => 'pro_options',
'label' => esc_html__( 'Features ', 'lawyer-hub' ),
'description' => esc_url( LAWYER_HUB_PRO_THEME_URL ),
'priority' => 100
)));
// Top Bar
$wp_customize->add_section( 'lawyer_hub_topbar', array(
'title' => __( 'Header Details', 'lawyer-hub' ),
'priority' => 2,
'description' => __( 'Add your contact details', 'lawyer-hub' ),
'panel' => 'lawyer_hub_panel_id'
) );
$wp_customize->add_setting( 'lawyer_hub_search_icon', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_search_icon', array(
'label' => esc_html__( 'Show / Hide Search Option', 'lawyer-hub' ),
'section' => 'lawyer_hub_topbar',
'type' => 'toggle',
'settings' => 'lawyer_hub_search_icon',
) ) );
$wp_customize->add_setting('lawyer_hub_location_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('lawyer_hub_location_text',array(
'label' => __('Add Location','lawyer-hub'),
'section'=> 'lawyer_hub_topbar',
'type'=> 'text'
));
$wp_customize->add_setting('lawyer_hub_location_icon',array(
'default' => 'fas fa-map-marker-alt',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Lawyer_Hub_Icon_Changer(
$wp_customize,'lawyer_hub_location_icon',array(
'label' => __('Location Icon','lawyer-hub'),
'transport' => 'refresh',
'section' => 'lawyer_hub_topbar',
'type' => 'icon'
)));
$wp_customize->add_setting('lawyer_hub_phone_number_text',array(
'default'=> '',
'sanitize_callback' => 'lawyer_hub_sanitize_phone_number'
));
$wp_customize->add_control('lawyer_hub_phone_number_text',array(
'label' => __('Add Phone Number','lawyer-hub'),
'section'=> 'lawyer_hub_topbar',
'type'=> 'text'
));
$wp_customize->add_setting('lawyer_hub_number_icon',array(
'default' => 'fas fa-phone',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Lawyer_Hub_Icon_Changer(
$wp_customize,'lawyer_hub_number_icon',array(
'label' => __('Phone Icon','lawyer-hub'),
'transport' => 'refresh',
'section' => 'lawyer_hub_topbar',
'type' => 'icon'
)));
$wp_customize->add_setting('lawyer_hub_email_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('lawyer_hub_email_text',array(
'label' => __('Add Email Text','lawyer-hub'),
'section'=> 'lawyer_hub_topbar',
'type'=> 'text'
));
$wp_customize->add_setting('lawyer_hub_email_address',array(
'default'=> '',
'sanitize_callback' => 'sanitize_email'
));
$wp_customize->add_control('lawyer_hub_email_address',array(
'label' => __('Add Email Address','lawyer-hub'),
'section'=> 'lawyer_hub_topbar',
'type'=> 'text'
));
$wp_customize->add_setting('lawyer_hub_email_icon',array(
'default' => 'far fa-envelope',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Lawyer_Hub_Icon_Changer(
$wp_customize,'lawyer_hub_email_icon',array(
'label' => __('Email Icon','lawyer-hub'),
'transport' => 'refresh',
'section' => 'lawyer_hub_topbar',
'type' => 'icon'
)));
$wp_customize->add_setting('lawyer_hub_button_text',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('lawyer_hub_button_text',array(
'label' => __('Add Button Text','lawyer-hub'),
'section'=> 'lawyer_hub_topbar',
'type'=> 'text'
));
$wp_customize->add_setting('lawyer_hub_button_link',array(
'default'=> '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('lawyer_hub_button_link',array(
'label' => __('Add Button Link','lawyer-hub'),
'section'=> 'lawyer_hub_topbar',
'type'=> 'url'
));
// Pro Version
$wp_customize->add_setting( 'lawyer_hub_header_pro_version_logo', array(
'sanitize_callback' => 'lawyer_hub_sanitize_custom_control'
));
$wp_customize->add_control( new Lawyer_Hub_Customize_Pro_Version ( $wp_customize,'lawyer_hub_header_pro_version_logo', array(
'section' => 'lawyer_hub_topbar',
'type' => 'pro_options',
'label' => esc_html__( 'Features ', 'lawyer-hub' ),
'description' => esc_url( LAWYER_HUB_PRO_THEME_URL ),
'priority' => 100
)));
// Social Media
$wp_customize->add_section( 'lawyer_hub_social_media', array(
'title' => __( 'Social Media Links', 'lawyer-hub' ),
'priority' => 2,
'description' => __( 'Add your Social Links', 'lawyer-hub' ),
'panel' => 'lawyer_hub_panel_id'
) );
$wp_customize->add_setting( 'lawyer_hub_header_fb_new_tab', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_header_fb_new_tab', array(
'label' => esc_html__( 'Open in new tab', 'lawyer-hub' ),
'section' => 'lawyer_hub_social_media',
'type' => 'toggle',
'settings' => 'lawyer_hub_header_fb_new_tab',
) ) );
$wp_customize->add_setting('lawyer_hub_facebook_url',array(
'default'=> '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('lawyer_hub_facebook_url',array(
'label' => __('Facebook Link','lawyer-hub'),
'section'=> 'lawyer_hub_social_media',
'type'=> 'url'
));
$wp_customize->add_setting('lawyer_hub_facebook_icon',array(
'default' => 'fab fa-facebook-f',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Lawyer_Hub_Icon_Changer(
$wp_customize,'lawyer_hub_facebook_icon',array(
'label' => __('Facebook Icon','lawyer-hub'),
'transport' => 'refresh',
'section' => 'lawyer_hub_social_media',
'type' => 'icon'
)));
$wp_customize->add_setting( 'lawyer_hub_header_twt_new_tab', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_header_twt_new_tab', array(
'label' => esc_html__( 'Open in new tab', 'lawyer-hub' ),
'section' => 'lawyer_hub_social_media',
'type' => 'toggle',
'settings' => 'lawyer_hub_header_twt_new_tab',
) ) );
$wp_customize->add_setting('lawyer_hub_twitter_url',array(
'default'=> '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('lawyer_hub_twitter_url',array(
'label' => __('Twitter Link','lawyer-hub'),
'section'=> 'lawyer_hub_social_media',
'type'=> 'url'
));
$wp_customize->add_setting('lawyer_hub_twitter_icon',array(
'default' => 'fab fa-twitter',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Lawyer_Hub_Icon_Changer(
$wp_customize,'lawyer_hub_twitter_icon',array(
'label' => __('Twitter Icon','lawyer-hub'),
'transport' => 'refresh',
'section' => 'lawyer_hub_social_media',
'type' => 'icon'
)));
$wp_customize->add_setting( 'lawyer_hub_header_ins_new_tab', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_header_ins_new_tab', array(
'label' => esc_html__( 'Open in new tab', 'lawyer-hub' ),
'section' => 'lawyer_hub_social_media',
'type' => 'toggle',
'settings' => 'lawyer_hub_header_ins_new_tab',
) ) );
$wp_customize->add_setting('lawyer_hub_instagram_url',array(
'default'=> '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('lawyer_hub_instagram_url',array(
'label' => __('Instagram Link','lawyer-hub'),
'section'=> 'lawyer_hub_social_media',
'type'=> 'url'
));
$wp_customize->add_setting('lawyer_hub_instagram_icon',array(
'default' => 'fab fa-instagram',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Lawyer_Hub_Icon_Changer(
$wp_customize,'lawyer_hub_instagram_icon',array(
'label' => __('Instagram Icon','lawyer-hub'),
'transport' => 'refresh',
'section' => 'lawyer_hub_social_media',
'type' => 'icon'
)));
$wp_customize->add_setting( 'lawyer_hub_header_ut_new_tab', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_header_ut_new_tab', array(
'label' => esc_html__( 'Open in new tab', 'lawyer-hub' ),
'section' => 'lawyer_hub_social_media',
'type' => 'toggle',
'settings' => 'lawyer_hub_header_ut_new_tab',
) ) );
$wp_customize->add_setting('lawyer_hub_youtube_url',array(
'default'=> '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('lawyer_hub_youtube_url',array(
'label' => __('YouTube Link','lawyer-hub'),
'section'=> 'lawyer_hub_social_media',
'type'=> 'url'
));
$wp_customize->add_setting('lawyer_hub_youtube_icon',array(
'default' => 'fab fa-youtube',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Lawyer_Hub_Icon_Changer(
$wp_customize,'lawyer_hub_youtube_icon',array(
'label' => __('Youtube Icon','lawyer-hub'),
'transport' => 'refresh',
'section' => 'lawyer_hub_social_media',
'type' => 'icon'
)));
$wp_customize->add_setting( 'lawyer_hub_header_pint_new_tab', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_header_pint_new_tab', array(
'label' => esc_html__( 'Open in new tab', 'lawyer-hub' ),
'section' => 'lawyer_hub_social_media',
'type' => 'toggle',
'settings' => 'lawyer_hub_header_pint_new_tab',
) ) );
$wp_customize->add_setting('lawyer_hub_pint_url',array(
'default'=> '',
'sanitize_callback' => 'esc_url_raw'
));
$wp_customize->add_control('lawyer_hub_pint_url',array(
'label' => __('Pinterest Link','lawyer-hub'),
'section'=> 'lawyer_hub_social_media',
'type'=> 'url'
));
$wp_customize->add_setting('lawyer_hub_pint_icon',array(
'default' => 'fab fa-pinterest',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Lawyer_Hub_Icon_Changer(
$wp_customize,'lawyer_hub_pint_icon',array(
'label' => __('Pinterest Icon','lawyer-hub'),
'transport' => 'refresh',
'section' => 'lawyer_hub_social_media',
'type' => 'icon'
)));
$wp_customize->add_setting('lawyer_hub_social_icon_fontsize',array(
'default'=> '',
'sanitize_callback' => 'lawyer_hub_sanitize_number_absint'
));
$wp_customize->add_control('lawyer_hub_social_icon_fontsize',array(
'label' => __('Social Icons Font Size in PX','lawyer-hub'),
'type'=> 'number',
'section'=> 'lawyer_hub_social_media',
'input_attrs' => array(
'step' => 1,
'min' => 0,
'max' => 30,
),
));
// Pro Version
$wp_customize->add_setting( 'lawyer_hub_social_media_pro_version_logo', array(
'sanitize_callback' => 'lawyer_hub_sanitize_custom_control'
));
$wp_customize->add_control( new Lawyer_Hub_Customize_Pro_Version ( $wp_customize,'lawyer_hub_social_media_pro_version_logo', array(
'section' => 'lawyer_hub_social_media',
'type' => 'pro_options',
'label' => esc_html__( 'Features ', 'lawyer-hub' ),
'description' => esc_url( LAWYER_HUB_PRO_THEME_URL ),
'priority' => 100
)));
//home page slider
$wp_customize->add_section( 'lawyer_hub_slider_section' , array(
'title' => __( 'Slider Section', 'lawyer-hub' ),
'priority' => 3,
'panel' => 'lawyer_hub_panel_id'
) );
$wp_customize->add_setting( 'lawyer_hub_slider_arrows', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_slider_arrows', array(
'label' => esc_html__( 'Show / Hide Slider', 'lawyer-hub' ),
'section' => 'lawyer_hub_slider_section',
'type' => 'toggle',
'settings' => 'lawyer_hub_slider_arrows',
) ) );
$wp_customize->add_setting( 'lawyer_hub_slider_sec_animation', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new lawyer_hub_Toggle_Control( $wp_customize, 'lawyer_hub_slider_sec_animation', array(
'label' => esc_html__( 'Show / Hide Slider Section Animation', 'lawyer-hub' ),
'section' => 'lawyer_hub_slider_section',
'type' => 'toggle',
'settings' => 'lawyer_hub_slider_sec_animation',
) ) );
$wp_customize->add_setting( 'lawyer_hub_show_slider_title', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_show_slider_title', array(
'label' => esc_html__( 'Show / Hide Slider Heading', 'lawyer-hub' ),
'section' => 'lawyer_hub_slider_section',
'type' => 'toggle',
'settings' => 'lawyer_hub_show_slider_title',
) ) );
$wp_customize->add_setting( 'lawyer_hub_show_slider_content', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_show_slider_content', array(
'label' => esc_html__( 'Show / Hide Slider Content', 'lawyer-hub' ),
'section' => 'lawyer_hub_slider_section',
'type' => 'toggle',
'settings' => 'lawyer_hub_show_slider_content',
) ) );
for ( $count = 1; $count <= 3; $count++ ) {
$wp_customize->add_setting( 'lawyer_hub_slider_page' . $count, array(
'default' => '',
'sanitize_callback' => 'lawyer_hub_sanitize_dropdown_pages'
) );
$wp_customize->add_control( 'lawyer_hub_slider_page' . $count, array(
'label' => __( 'Select Slide Image Page', 'lawyer-hub' ),
'description' => __('Image Size ( 1835 x 700 ) px','lawyer-hub'),
'section' => 'lawyer_hub_slider_section',
'type' => 'dropdown-pages'
) );
}
$wp_customize->add_setting( 'lawyer_hub_slider_button', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_slider_button', array(
'label' => esc_html__( 'Show / Hide Slider Button', 'lawyer-hub' ),
'section' => 'lawyer_hub_slider_section',
'type' => 'toggle',
'settings' => 'lawyer_hub_slider_button',
) ) );
$wp_customize->add_setting( 'lawyer_hub_slider_opacity_setting', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new lawyer_hub_Toggle_Control( $wp_customize, 'lawyer_hub_slider_opacity_setting', array(
'label' => esc_html__( 'Show / Hide Image Opacity', 'lawyer-hub' ),
'section' => 'lawyer_hub_slider_section',
'type' => 'toggle',
'settings' => 'lawyer_hub_slider_opacity_setting',
) ) );
$wp_customize->add_setting( 'lawyer_hub_image_opacity_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'lawyer_hub_image_opacity_color', array(
'label' => __('Slider Image Opacity Color', 'lawyer-hub'),
'section' => 'lawyer_hub_slider_section',
'settings' => 'lawyer_hub_image_opacity_color',
)));
$wp_customize->add_setting('lawyer_hub_slider_opacity',array(
'default'=> '',
'sanitize_callback' => 'lawyer_hub_sanitize_choices'
));
$wp_customize->add_control('lawyer_hub_slider_opacity',array(
'type' => 'select',
'label' => esc_html__('Slider Image Opacity','lawyer-hub'),
'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'=> 'lawyer_hub_slider_section',
));
//Slider excerpt
$wp_customize->add_setting( 'lawyer_hub_slider_excerpt_length', array(
'default' => 35,
'sanitize_callback' => 'absint',
) );
$wp_customize->add_control( 'lawyer_hub_slider_excerpt_length', array(
'label' => esc_html__( 'Slider Excerpt length','lawyer-hub' ),
'section' => 'lawyer_hub_slider_section',
'type' => 'number',
'settings' => 'lawyer_hub_slider_excerpt_length',
'input_attrs' => array(
'step' => 2,
'min' => 0,
'max' => 100,
),
) );
//Slider height
$wp_customize->add_setting('lawyer_hub_slider_img_height',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('lawyer_hub_slider_img_height',array(
'label' => __('Slider Height','lawyer-hub'),
'description' => __('Add slider height in px(eg. 700px).','lawyer-hub'),
'section'=> 'lawyer_hub_slider_section',
'type'=> 'text'
));
// Pro Version
$wp_customize->add_setting( 'lawyer_hub_slider_pro_version_logo', array(
'sanitize_callback' => 'lawyer_hub_sanitize_custom_control'
));
$wp_customize->add_control( new Lawyer_Hub_Customize_Pro_Version ( $wp_customize,'lawyer_hub_slider_pro_version_logo', array(
'section' => 'lawyer_hub_slider_section',
'type' => 'pro_options',
'label' => esc_html__( 'Features ', 'lawyer-hub' ),
'description' => esc_url( LAWYER_HUB_PRO_THEME_URL ),
'priority' => 100
)));
//home page about
$wp_customize->add_section( 'lawyer_hub_about_section' , array(
'title' => __( 'About Us Section', 'lawyer-hub' ),
'priority' => 3,
'panel' => 'lawyer_hub_panel_id'
) );
$wp_customize->add_setting( 'lawyer_hub_about_section_show_hide', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_about_section_show_hide', array(
'label' => esc_html__( 'Show / Hide About Section', 'lawyer-hub' ),
'section' => 'lawyer_hub_about_section',
'type' => 'toggle',
'settings' => 'lawyer_hub_about_section_show_hide',
) ) );
$wp_customize->add_setting( 'lawyer_hub_about_sec_animation', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new lawyer_hub_Toggle_Control( $wp_customize, 'lawyer_hub_about_sec_animation', array(
'label' => esc_html__( 'Show / Hide Section Animation', 'lawyer-hub' ),
'priority' => 1,
'section' => 'lawyer_hub_about_section',
'type' => 'toggle',
'settings' => 'lawyer_hub_about_sec_animation',
) ) );
$wp_customize->add_setting('lawyer_hub_about_title',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('lawyer_hub_about_title',array(
'label' => __('Add Title','lawyer-hub'),
'section'=> 'lawyer_hub_about_section',
'type'=> 'text'
));
$wp_customize->add_setting( 'lawyer_hub_about_page', array(
'default' => '',
'sanitize_callback' => 'lawyer_hub_sanitize_dropdown_pages'
) );
$wp_customize->add_control( 'lawyer_hub_about_page', array(
'label' => __( 'Select About Page', 'lawyer-hub' ),
'section' => 'lawyer_hub_about_section',
'type' => 'dropdown-pages'
) );
$wp_customize->add_setting('lawyer_hub_about_icon',array(
'default' => 'fas fa-balance-scale',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Lawyer_Hub_Icon_Changer(
$wp_customize,'lawyer_hub_about_icon',array(
'label' => __('About us Icon','lawyer-hub'),
'transport' => 'refresh',
'section' => 'lawyer_hub_about_section',
'type' => 'icon'
)));
// Pro Version
$wp_customize->add_setting( 'lawyer_hub_about_pro_version_logo', array(
'sanitize_callback' => 'lawyer_hub_sanitize_custom_control'
));
$wp_customize->add_control( new Lawyer_Hub_Customize_Pro_Version ( $wp_customize,'lawyer_hub_about_pro_version_logo', array(
'section' => 'lawyer_hub_about_section',
'type' => 'pro_options',
'label' => esc_html__( 'Features ', 'lawyer-hub' ),
'description' => esc_url( LAWYER_HUB_PRO_THEME_URL ),
'priority' => 100
)));
//footer
$wp_customize->add_section('lawyer_hub_footer_section',array(
'title' => __('Footer Widget Settings','lawyer-hub'),
'panel' => 'lawyer_hub_panel_id',
'priority' => 4,
));
$wp_customize->add_setting( 'lawyer_hub_footer_animation', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new lawyer_hub_Toggle_Control( $wp_customize, 'lawyer_hub_footer_animation', array(
'label' => esc_html__( 'Show / Hide Footer Animation', 'lawyer-hub' ),
'priority' => 1,
'section' => 'lawyer_hub_footer_section',
'type' => 'toggle',
'settings' => 'lawyer_hub_footer_animation',
) ) );
// footer columns
$wp_customize->add_setting('lawyer_hub_footer_columns',array(
'default' => 4,
'sanitize_callback' => 'lawyer_hub_sanitize_number_absint'
));
$wp_customize->add_control('lawyer_hub_footer_columns',array(
'label' => __('Footer Widget Columns','lawyer-hub'),
'section' => 'lawyer_hub_footer_section',
'setting' => 'lawyer_hub_footer_columns',
'type' => 'number',
'input_attrs' => array(
'step' => 1,
'min' => 1,
'max' => 4,
),
));
$wp_customize->add_setting( 'lawyer_hub_tp_footer_bg_color_option', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'lawyer_hub_tp_footer_bg_color_option', array(
'label' => __('Footer Widget Background Color', 'lawyer-hub'),
'description' => __('It will change the complete footer widget backgorund color.', 'lawyer-hub'),
'section' => 'lawyer_hub_footer_section',
'settings' => 'lawyer_hub_tp_footer_bg_color_option',
)));
$wp_customize->add_setting('lawyer_hub_footer_widget_image',array(
'default' => '',
'sanitize_callback' => 'esc_url_raw',
));
$wp_customize->add_control( new WP_Customize_Image_Control($wp_customize,'lawyer_hub_footer_widget_image',array(
'label' => __('Footer Widget Background Image','lawyer-hub'),
'section' => 'lawyer_hub_footer_section'
)));
//footer widget title font size
$wp_customize->add_setting('lawyer_hub_footer_widget_title_font_size',array(
'default' => '',
'sanitize_callback' => 'lawyer_hub_sanitize_number_absint'
));
$wp_customize->add_control('lawyer_hub_footer_widget_title_font_size',array(
'label' => __('Change Footer Widget Title Font Size in PX','lawyer-hub'),
'section' => 'lawyer_hub_footer_section',
'setting' => 'lawyer_hub_footer_widget_title_font_size',
'type' => 'number',
'input_attrs' => array(
'step' => 1,
'min' => 0,
'max' => 50,
),
));
$wp_customize->add_setting( 'lawyer_hub_footer_widget_title_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'lawyer_hub_footer_widget_title_color', array(
'label' => __('Change Footer Widget Title Color', 'lawyer-hub'),
'section' => 'lawyer_hub_footer_section',
'settings' => 'lawyer_hub_footer_widget_title_color',
)));
$wp_customize->add_setting('lawyer_hub_footer_widget_title_font_weight',array(
'default' => '',
'sanitize_callback' => 'lawyer_hub_sanitize_choices'
));
$wp_customize->add_control('lawyer_hub_footer_widget_title_font_weight',array(
'type' => 'radio',
'label' => __('Change Footer Widget Title Font Weight', 'lawyer-hub'),
'section' => 'lawyer_hub_footer_section',
'type' => 'select',
'choices' => array(
'100' => __('100','lawyer-hub'),
'200' => __('200','lawyer-hub'),
'300' => __('300','lawyer-hub'),
'400' => __('400','lawyer-hub'),
'500' => __('500','lawyer-hub'),
'600' => __('600','lawyer-hub'),
'700' => __('700','lawyer-hub'),
'800' => __('800','lawyer-hub'),
'900' => __('900','lawyer-hub')
),
) );
$wp_customize->add_setting('lawyer_hub_footer_widget_title_text_tranform',array(
'default' => '',
'sanitize_callback' => 'lawyer_hub_sanitize_choices'
));
$wp_customize->add_control('lawyer_hub_footer_widget_title_text_tranform',array(
'type' => 'select',
'label' => __('Change Footer Widget Title Letter Case','lawyer-hub'),
'section' => 'lawyer_hub_footer_section',
'choices' => array(
'Uppercase' => __('Uppercase','lawyer-hub'),
'Lowercase' => __('Lowercase','lawyer-hub'),
'Capitalize' => __('Capitalize','lawyer-hub'),
),
) );
// Add Settings and Controls for position
$wp_customize->add_setting('lawyer_hub_footer_widget_title_position',array(
'default' => '',
'sanitize_callback' => 'lawyer_hub_sanitize_choices'
));
$wp_customize->add_control('lawyer_hub_footer_widget_title_position',array(
'type' => 'radio',
'label' => __('Change Footer Widget Position', 'lawyer-hub'),
'description' => __('This option work for Footer Widget', 'lawyer-hub'),
'section' => 'lawyer_hub_footer_section',
'choices' => array(
'Right' => __('Right','lawyer-hub'),
'Left' => __('Left','lawyer-hub'),
'Center' => __('Center','lawyer-hub')
),
) );
$wp_customize->add_setting( 'lawyer_hub_return_to_header', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_return_to_header', array(
'label' => esc_html__( 'Show / Hide Return to Header', 'lawyer-hub' ),
'section' => 'lawyer_hub_footer_section',
'type' => 'toggle',
'settings' => 'lawyer_hub_return_to_header',
) ) );
$wp_customize->add_setting('lawyer_hub_return_icon',array(
'default' => 'fas fa-arrow-up',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control(new Lawyer_Hub_Icon_Changer(
$wp_customize,'lawyer_hub_return_icon',array(
'label' => __('Scroll Top Icon','lawyer-hub'),
'transport' => 'refresh',
'section' => 'lawyer_hub_footer_section',
'type' => 'icon'
)));
// Add Settings and Controls for Scroll top
$wp_customize->add_setting('lawyer_hub_scroll_top_position',array(
'default' => 'Right',
'sanitize_callback' => 'lawyer_hub_sanitize_choices'
));
$wp_customize->add_control('lawyer_hub_scroll_top_position',array(
'type' => 'radio',
'label' => __('Scroll to top Position', 'lawyer-hub'),
'description' => __('This option work for scroll to top', 'lawyer-hub'),
'section' => 'lawyer_hub_footer_section',
'choices' => array(
'Right' => __('Right','lawyer-hub'),
'Left' => __('Left','lawyer-hub'),
'Center' => __('Center','lawyer-hub')
),
) );
// Pro Version
$wp_customize->add_setting( 'lawyer_hub_footer_widget_pro_version_logo', array(
'sanitize_callback' => 'lawyer_hub_sanitize_custom_control'
));
$wp_customize->add_control( new Lawyer_Hub_Customize_Pro_Version ( $wp_customize,'lawyer_hub_footer_widget_pro_version_logo', array(
'section' => 'lawyer_hub_footer_section',
'type' => 'pro_options',
'label' => esc_html__( 'Features ', 'lawyer-hub' ),
'description' => esc_url( LAWYER_HUB_PRO_THEME_URL ),
'priority' => 100
)));
//footer
$wp_customize->add_section('lawyer_hub_footer_copyright_section',array(
'title' => __('Footer Copyright Settings','lawyer-hub'),
'description' => __('Add copyright text.','lawyer-hub'),
'panel' => 'lawyer_hub_panel_id',
'priority' => 4,
));
$wp_customize->add_setting('lawyer_hub_footer_text',array(
'default' => '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('lawyer_hub_footer_text',array(
'label' => __('Copyright Text','lawyer-hub'),
'section' => 'lawyer_hub_footer_copyright_section',
'type' => 'text'
));
//footer widget title font size
$wp_customize->add_setting('lawyer_hub_footer_copyright_font_size',array(
'default' => '',
'sanitize_callback' => 'lawyer_hub_sanitize_number_absint'
));
$wp_customize->add_control('lawyer_hub_footer_copyright_font_size',array(
'label' => __('Change Footer Copyright Font Size in PX','lawyer-hub'),
'section' => 'lawyer_hub_footer_copyright_section',
'setting' => 'lawyer_hub_footer_copyright_font_size',
'type' => 'number',
'input_attrs' => array(
'step' => 1,
'min' => 0,
'max' => 50,
),
));
$wp_customize->add_setting('lawyer_hub_footer_copyright_title_font_weight',array(
'default' => '',
'sanitize_callback' => 'lawyer_hub_sanitize_choices'
));
$wp_customize->add_control('lawyer_hub_footer_copyright_title_font_weight',array(
'type' => 'radio',
'label' => __('Change Footer Copyright Text Font Weight', 'lawyer-hub'),
'section' => 'lawyer_hub_footer_copyright_section',
'type' => 'select',
'choices' => array(
'100' => __('100','lawyer-hub'),
'200' => __('200','lawyer-hub'),
'300' => __('300','lawyer-hub'),
'400' => __('400','lawyer-hub'),
'500' => __('500','lawyer-hub'),
'600' => __('600','lawyer-hub'),
'700' => __('700','lawyer-hub'),
'800' => __('800','lawyer-hub'),
'900' => __('900','lawyer-hub')
),
) );
$wp_customize->add_setting( 'lawyer_hub_footer_copyright_text_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'lawyer_hub_footer_copyright_text_color', array(
'label' => __('Change Footer Copyright Text Color', 'lawyer-hub'),
'section' => 'lawyer_hub_footer_copyright_section',
'settings' => 'lawyer_hub_footer_copyright_text_color',
)));
$wp_customize->add_setting('lawyer_hub_footer_copyright_top_bottom_padding',array(
'default' => '',
'sanitize_callback' => 'lawyer_hub_sanitize_number_absint'
));
$wp_customize->add_control('lawyer_hub_footer_copyright_top_bottom_padding',array(
'label' => __('Change Footer Copyright Padding in PX','lawyer-hub'),
'section' => 'lawyer_hub_footer_copyright_section',
'setting' => 'lawyer_hub_footer_copyright_top_bottom_padding',
'type' => 'number',
'input_attrs' => array(
'step' => 1,
'min' => 0,
'max' => 50,
),
));
// Pro Version
$wp_customize->add_setting( 'lawyer_hub_copyright_pro_version_logo', array(
'sanitize_callback' => 'lawyer_hub_sanitize_custom_control'
));
$wp_customize->add_control( new Lawyer_Hub_Customize_Pro_Version ( $wp_customize,'lawyer_hub_copyright_pro_version_logo', array(
'section' => 'lawyer_hub_footer_copyright_section',
'type' => 'pro_options',
'label' => esc_html__( 'Features ', 'lawyer-hub' ),
'description' => esc_url( LAWYER_HUB_PRO_THEME_URL ),
'priority' => 100
)));
$wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
$wp_customize->selective_refresh->add_partial( 'blogname', array(
'selector' => '.site-title a',
'render_callback' => 'lawyer_hub_customize_partial_blogname',
) );
$wp_customize->selective_refresh->add_partial( 'blogdescription', array(
'selector' => '.site-description',
'render_callback' => 'lawyer_hub_customize_partial_blogdescription',
) );
//Mobile responsive
$wp_customize->add_section('lawyer_hub_mobile_media_option',array(
'title' => __('Mobile Responsive media', 'lawyer-hub'),
'description' => __('Control will no function if the toggle in the main settings is off.', 'lawyer-hub'),
'priority' => 5,
'panel' => 'lawyer_hub_panel_id'
) );
$wp_customize->add_setting( 'lawyer_hub_mobile_blog_description', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new lawyer_hub_Toggle_Control( $wp_customize, 'lawyer_hub_mobile_blog_description', array(
'label' => esc_html__( 'Show / Hide Blog Page Description', 'lawyer-hub' ),
'section' => 'lawyer_hub_mobile_media_option',
'type' => 'toggle',
'settings' => 'lawyer_hub_mobile_blog_description',
) ) );
$wp_customize->add_setting( 'lawyer_hub_return_to_header_mob', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_return_to_header_mob', array(
'label' => esc_html__( 'Show / Hide Return to Header', 'lawyer-hub' ),
'section' => 'lawyer_hub_mobile_media_option',
'type' => 'toggle',
'settings' => 'lawyer_hub_return_to_header_mob',
) ) );
$wp_customize->add_setting( 'lawyer_hub_slider_buttom_mob', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_slider_buttom_mob', array(
'label' => esc_html__( 'Show / Hide Slider Button', 'lawyer-hub' ),
'section' => 'lawyer_hub_mobile_media_option',
'type' => 'toggle',
'settings' => 'lawyer_hub_slider_buttom_mob',
) ) );
$wp_customize->add_setting( 'lawyer_hub_related_post_mob', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_related_post_mob', array(
'label' => esc_html__( 'Show / Hide Related Post', 'lawyer-hub' ),
'section' => 'lawyer_hub_mobile_media_option',
'type' => 'toggle',
'settings' => 'lawyer_hub_related_post_mob',
) ) );
//Slider height
$wp_customize->add_setting('lawyer_hub_slider_img_height_responsive',array(
'default'=> '',
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('lawyer_hub_slider_img_height_responsive',array(
'label' => __('Slider Height','lawyer-hub'),
'description' => __('Add slider height in px(eg. 700px).','lawyer-hub'),
'section'=> 'lawyer_hub_mobile_media_option',
'type'=> 'text'
));
// Pro Version
$wp_customize->add_setting( 'lawyer_hub_responsive_pro_version_logo', array(
'sanitize_callback' => 'lawyer_hub_sanitize_custom_control'
));
$wp_customize->add_control( new Lawyer_Hub_Customize_Pro_Version ( $wp_customize,'lawyer_hub_responsive_pro_version_logo', array(
'section' => 'lawyer_hub_mobile_media_option',
'type' => 'pro_options',
'label' => esc_html__( 'Features ', 'lawyer-hub' ),
'description' => esc_url( LAWYER_HUB_PRO_THEME_URL ),
'priority' => 100
)));
//site identity
$wp_customize->add_setting( 'lawyer_hub_site_title', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_site_title', array(
'label' => esc_html__( 'Show / Hide Site Title', 'lawyer-hub' ),
'section' => 'title_tagline',
'type' => 'toggle',
'settings' => 'lawyer_hub_site_title',
) ) );
// logo site title size
$wp_customize->add_setting('lawyer_hub_site_title_font_size',array(
'default' => 20,
'sanitize_callback' => 'lawyer_hub_sanitize_number_absint'
));
$wp_customize->add_control('lawyer_hub_site_title_font_size',array(
'label' => __('Site Title Font Size in PX','lawyer-hub'),
'section' => 'title_tagline',
'setting' => 'lawyer_hub_site_title_font_size',
'type' => 'number',
'input_attrs' => array(
'step' => 1,
'min' => 0,
'max' => 80,
),
));
$wp_customize->add_setting( 'lawyer_hub_site_tagline_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'lawyer_hub_site_tagline_color', array(
'label' => __('Change Site Title Color', 'lawyer-hub'),
'section' => 'title_tagline',
'settings' => 'lawyer_hub_site_tagline_color',
)));
$wp_customize->add_setting( 'lawyer_hub_site_tagline', array(
'default' => false,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_site_tagline', array(
'label' => esc_html__( 'Show / Hide Site Tagline', 'lawyer-hub' ),
'section' => 'title_tagline',
'type' => 'toggle',
'settings' => 'lawyer_hub_site_tagline',
) ) );
// logo site tagline size
$wp_customize->add_setting('lawyer_hub_site_tagline_font_size',array(
'default' => 15,
'sanitize_callback' => 'lawyer_hub_sanitize_number_absint'
));
$wp_customize->add_control('lawyer_hub_site_tagline_font_size',array(
'label' => __('Site Tagline Font Size in PX','lawyer-hub'),
'section' => 'title_tagline',
'setting' => 'lawyer_hub_site_tagline_font_size',
'type' => 'number',
'input_attrs' => array(
'step' => 1,
'min' => 0,
'max' => 50,
),
));
$wp_customize->add_setting( 'lawyer_hub_logo_tagline_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'lawyer_hub_logo_tagline_color', array(
'label' => __('Change Site Tagline Color', 'lawyer-hub'),
'section' => 'title_tagline',
'settings' => 'lawyer_hub_logo_tagline_color',
)));
$wp_customize->add_setting('lawyer_hub_logo_width',array(
'default' => 150,
'sanitize_callback' => 'lawyer_hub_sanitize_number_absint'
));
$wp_customize->add_control('lawyer_hub_logo_width',array(
'label' => esc_html__('Here You Can Customize Your Logo Size','lawyer-hub'),
'section' => 'title_tagline',
'type' => 'number'
));
$wp_customize->add_setting('lawyer_hub_logo_settings',array(
'default' => 'Different Line',
'sanitize_callback' => 'lawyer_hub_sanitize_choices'
));
$wp_customize->add_control('lawyer_hub_logo_settings',array(
'type' => 'radio',
'label' => __('Logo Layout Settings', 'lawyer-hub'),
'description' => __('Here you have two options 1. Logo and Site tite in differnt line. 2. Logo and Site title in same line.', 'lawyer-hub'),
'section' => 'title_tagline',
'choices' => array(
'Different Line' => __('Different Line','lawyer-hub'),
'Same Line' => __('Same Line','lawyer-hub')
),
) );
//woo commerce
$wp_customize->add_setting('lawyer_hub_per_columns',array(
'default'=> 3,
'sanitize_callback' => 'lawyer_hub_sanitize_number_absint'
));
$wp_customize->add_control('lawyer_hub_per_columns',array(
'label' => __('Product Per Row','lawyer-hub'),
'section'=> 'woocommerce_product_catalog',
'type'=> 'number'
));
$wp_customize->add_setting('lawyer_hub_product_per_page',array(
'default'=> 9,
'sanitize_callback' => 'lawyer_hub_sanitize_number_absint'
));
$wp_customize->add_control('lawyer_hub_product_per_page',array(
'label' => __('Product Per Page','lawyer-hub'),
'section'=> 'woocommerce_product_catalog',
'type'=> 'number'
));
$wp_customize->add_setting( 'lawyer_hub_product_sidebar', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_product_sidebar', array(
'label' => esc_html__( 'how / Hide Shop page sidebar', 'lawyer-hub' ),
'section' => 'woocommerce_product_catalog',
'type' => 'toggle',
'settings' => 'lawyer_hub_product_sidebar',
) ) );
$wp_customize->add_setting( 'lawyer_hub_single_product_sidebar', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_single_product_sidebar', array(
'label' => esc_html__( 'Show / Hide Product page sidebar', 'lawyer-hub' ),
'section' => 'woocommerce_product_catalog',
'type' => 'toggle',
'settings' => 'lawyer_hub_single_product_sidebar',
) ) );
$wp_customize->add_setting( 'lawyer_hub_related_product', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
) );
$wp_customize->add_control( new Lawyer_Hub_Toggle_Control( $wp_customize, 'lawyer_hub_related_product', array(
'label' => esc_html__( 'Show / Hide related product', 'lawyer-hub' ),
'section' => 'woocommerce_product_catalog',
'type' => 'toggle',
'settings' => 'lawyer_hub_related_product',
) ) );
//Page template settings
$wp_customize->add_panel( 'lawyer_hub_page_panel_id', array(
'priority' => 10,
'capability' => 'edit_theme_options',
'theme_supports' => '',
'title' => __( 'Page Template Settings', 'lawyer-hub' ),
'description' => __( 'Description of what this panel does.', 'lawyer-hub' ),
) );
// 404 PAGE
$wp_customize->add_section('lawyer_hub_404_page_section',array(
'title' => __('404 Page', 'lawyer-hub'),
'description' => 'Here you can customize 404 Page content.',
'panel' => 'lawyer_hub_page_panel_id'
) );
$wp_customize->add_setting('lawyer_hub_edit_404_title',array(
'default'=> __('Oops! That page cant be found.','lawyer-hub'),
'sanitize_callback' => 'sanitize_text_field',
));
$wp_customize->add_control('lawyer_hub_edit_404_title',array(
'label' => __('Edit Title','lawyer-hub'),
'section'=> 'lawyer_hub_404_page_section',
'type'=> 'text',
));
$wp_customize->add_setting('lawyer_hub_edit_404_text',array(
'default'=> __('It looks like nothing was found at this location. Maybe try a search?','lawyer-hub'),
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('lawyer_hub_edit_404_text',array(
'label' => __('Edit Text','lawyer-hub'),
'section'=> 'lawyer_hub_404_page_section',
'type'=> 'text'
));
// Search Results
$wp_customize->add_section('lawyer_hub_no_result_section',array(
'title' => __('Search Results', 'lawyer-hub'),
'description' => 'Here you can customize Search Result content.',
'panel' => 'lawyer_hub_page_panel_id'
) );
$wp_customize->add_setting('lawyer_hub_edit_no_result_title',array(
'default'=> __('Nothing Found','lawyer-hub'),
'sanitize_callback' => 'sanitize_text_field',
));
$wp_customize->add_control('lawyer_hub_edit_no_result_title',array(
'label' => __('Edit Title','lawyer-hub'),
'section'=> 'lawyer_hub_no_result_section',
'type'=> 'text',
));
$wp_customize->add_setting('lawyer_hub_edit_no_result_text',array(
'default'=> __('Sorry, but nothing matched your search terms. Please try again with some different keywords.','lawyer-hub'),
'sanitize_callback' => 'sanitize_text_field'
));
$wp_customize->add_control('lawyer_hub_edit_no_result_text',array(
'label' => __('Edit Text','lawyer-hub'),
'section'=> 'lawyer_hub_no_result_section',
'type'=> 'text'
));
// Header Image Height
$wp_customize->add_setting(
'lawyer_hub_header_image_height',
array(
'default' => 350,
'sanitize_callback' => 'absint',
)
);
$wp_customize->add_control(
'lawyer_hub_header_image_height',
array(
'label' => esc_html__( 'Header Image Height', 'lawyer-hub' ),
'section' => 'header_image',
'type' => 'number',
'description' => esc_html__( 'Control the height of the header image. Default is 350px.', 'lawyer-hub' ),
'input_attrs' => array(
'min' => 220,
'max' => 1000,
'step' => 1,
),
)
);
// Header Background Position
$wp_customize->add_setting(
'lawyer_hub_header_background_position',
array(
'default' => 'center',
'sanitize_callback' => 'sanitize_text_field',
)
);
$wp_customize->add_control(
'lawyer_hub_header_background_position',
array(
'label' => esc_html__( 'Header Background Position', 'lawyer-hub' ),
'section' => 'header_image',
'type' => 'select',
'choices' => array(
'top' => esc_html__( 'Top', 'lawyer-hub' ),
'center' => esc_html__( 'Center', 'lawyer-hub' ),
'bottom' => esc_html__( 'Bottom', 'lawyer-hub' ),
),
'description' => esc_html__( 'Choose how you want to position the header image.', 'lawyer-hub' ),
)
);
// Header Image Parallax Effect
$wp_customize->add_setting(
'lawyer_hub_header_background_attachment',
array(
'default' => 1,
'sanitize_callback' => 'absint',
)
);
$wp_customize->add_control(
'lawyer_hub_header_background_attachment',
array(
'label' => esc_html__( 'Header Image Parallax', 'lawyer-hub' ),
'section' => 'header_image',
'type' => 'checkbox',
'description' => esc_html__( 'Add a parallax effect on page scroll.', 'lawyer-hub' ),
)
);
//Opacity
$wp_customize->add_setting('lawyer_hub_header_banner_opacity_color',array(
'default' => '0.9',
'sanitize_callback' => 'lawyer_hub_sanitize_choices'
));
$wp_customize->add_control( 'lawyer_hub_header_banner_opacity_color', array(
'label' => esc_html__( 'Header Image Opacity','lawyer-hub' ),
'section' => 'header_image',
'type' => 'select',
'settings' => 'lawyer_hub_header_banner_opacity_color',
'choices' => array(
'0' => esc_attr(__('0','lawyer-hub')),
'0.1' => esc_attr(__('0.1','lawyer-hub')),
'0.2' => esc_attr(__('0.2','lawyer-hub')),
'0.3' => esc_attr(__('0.3','lawyer-hub')),
'0.4' => esc_attr(__('0.4','lawyer-hub')),
'0.5' => esc_attr(__('0.5','lawyer-hub')),
'0.6' => esc_attr(__('0.6','lawyer-hub')),
'0.7' => esc_attr(__('0.7','lawyer-hub')),
'0.8' => esc_attr(__('0.8','lawyer-hub')),
'0.9' => esc_attr(__('0.9','lawyer-hub'))
),
) );
$wp_customize->add_setting( 'lawyer_hub_header_banner_image_overlay', array(
'default' => true,
'transport' => 'refresh',
'sanitize_callback' => 'lawyer_hub_sanitize_checkbox',
));
$wp_customize->add_control( new lawyer_hub_Toggle_Control( $wp_customize, 'lawyer_hub_header_banner_image_overlay', array(
'label' => esc_html__( 'Show / Hide Header Image Overlay', 'lawyer-hub' ),
'section' => 'header_image',
)));
$wp_customize->add_setting('lawyer_hub_header_banner_image_ooverlay_color', array(
'default' => '#000',
'sanitize_callback' => 'sanitize_hex_color',
));
$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'lawyer_hub_header_banner_image_ooverlay_color', array(
'label' => __('Header Image Overlay Color', 'lawyer-hub'),
'section' => 'header_image',
)));
$wp_customize->add_setting(
'lawyer_hub_header_image_title_font_size',
array(
'default' => 32,
'sanitize_callback' => 'absint',
)
);
$wp_customize->add_control(
'lawyer_hub_header_image_title_font_size',
array(
'label' => esc_html__( 'Change Header Image Title Font Size', 'lawyer-hub' ),
'section' => 'header_image',
'type' => 'number',
'description' => esc_html__( 'Control the font Size of the header image title. Default is 32px.', 'lawyer-hub' ),
'input_attrs' => array(
'min' => 10,
'max' => 200,
'step' => 1,
),
)
);
$wp_customize->add_setting( 'lawyer_hub_header_image_title_text_color', array(
'default' => '',
'sanitize_callback' => 'sanitize_hex_color'
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'lawyer_hub_header_image_title_text_color', array(
'label' => __('Change Header Image Title Color', 'lawyer-hub'),
'section' => 'header_image',
'settings' => 'lawyer_hub_header_image_title_text_color',
)));
//Woocommerce settings
$wp_customize->add_section('lawyer_hub_woocommerce_section', array(
'title' => __('WooCommerce Options', 'lawyer-hub'),
'priority' => null,
'panel' => 'woocommerce',
));
$wp_customize->add_setting('lawyer_hub_sale_tag_position',array(
'default' => 'right',
'sanitize_callback' => 'lawyer_hub_sanitize_choices'
));
$wp_customize->add_control('lawyer_hub_sale_tag_position',array(
'type' => 'radio',
'label' => __('Sale Badge Position', 'lawyer-hub'),
'description' => __('This option work for Archieve Products', 'lawyer-hub'),
'section' => 'lawyer_hub_woocommerce_section',
'choices' => array(
'left' => __('Left','lawyer-hub'),
'right' => __('Right','lawyer-hub'),
),
) );
$wp_customize->add_setting('lawyer_hub_woocommerce_sale_font_size',array(
'default'=> '',
'sanitize_callback' => 'absint'
));
$wp_customize->add_control('lawyer_hub_woocommerce_sale_font_size',array(
'label' => __('Sale Font Size','lawyer-hub'),
'section'=> 'lawyer_hub_woocommerce_section',
'settings' => 'lawyer_hub_woocommerce_sale_font_size',
'type' => 'number',
'input_attrs' => array(
'step' => 2,
'min' => 0,
'max' => 100,
),
));
$wp_customize->add_setting('lawyer_hub_woocommerce_sale_padding_top_bottom',array(
'default'=> '',
'sanitize_callback' => 'absint'
));
$wp_customize->add_control('lawyer_hub_woocommerce_sale_padding_top_bottom',array(
'label' => __('Sale Padding Top Bottom','lawyer-hub'),
'section'=> 'lawyer_hub_woocommerce_section',
'type' => 'number',
'input_attrs' => array(
'step' => 2,
'min' => 0,
'max' => 100,
),
));
$wp_customize->add_setting('lawyer_hub_woocommerce_sale_padding_left_right',array(
'default'=> '',
'sanitize_callback' => 'absint'
));
$wp_customize->add_control('lawyer_hub_woocommerce_sale_padding_left_right',array(
'label' => __('Sale Padding Left Right','lawyer-hub'),
'section'=> 'lawyer_hub_woocommerce_section',
'type' => 'number',
'input_attrs' => array(
'step' => 2,
'min' => 0,
'max' => 100,
),
));
$wp_customize->add_setting( 'lawyer_hub_woocommerce_sale_border_radius', array(
'default' => '100',
'transport' => 'refresh',
'sanitize_callback' => 'absint'
) );
$wp_customize->add_control( 'lawyer_hub_woocommerce_sale_border_radius', array(
'label' => esc_html__( 'Sale Border Radius','lawyer-hub' ),
'section' => 'lawyer_hub_woocommerce_section',
'type' => 'number',
'input_attrs' => array(
'step' => 2,
'min' => 0,
'max' => 100,
),
) );
}
add_action( 'customize_register', 'lawyer_hub_customize_register' );
/**
* Render the site title for the selective refresh partial.
*
* @since Lawyer Hub 1.0
* @see lawyer_hub_customize_register()
*
* @return void
*/
function lawyer_hub_customize_partial_blogname() {
bloginfo( 'name' );
}
/**
* Render the site tagline for the selective refresh partial.
*
* @since Lawyer Hub 1.0
* @see lawyer_hub_customize_register()
*
* @return void
*/
function lawyer_hub_customize_partial_blogdescription() {
bloginfo( 'description' );
}
if ( ! defined( 'LAWYER_HUB_PRO_THEME_NAME' ) ) {
define( 'LAWYER_HUB_PRO_THEME_NAME', esc_html__( 'Lawyer Hub Pro', 'lawyer-hub' ));
}
if ( ! defined( 'LAWYER_HUB_PRO_THEME_URL' ) ) {
define( 'LAWYER_HUB_PRO_THEME_URL', esc_url('https://www.themespride.com/products/law-firm-wordpress-theme'));
}
if ( ! defined( 'LAWYER_HUB_DOCS_URL' ) ) {
define( 'LAWYER_HUB_DOCS_URL', esc_url('https://www.themespride.com/products/law-firm-wordpress-theme'));
}
if ( ! defined( 'LAWYER_HUB_DOCS_URL' ) ) {
define( 'LAWYER_HUB_DOCS_URL', esc_url('https://www.themespride.com/products/law-firm-wordpress-theme'));
}
if ( ! defined( 'LAWYER_HUB_TEXT' ) ) {
define( 'LAWYER_HUB_TEXT', __( 'Lawyer Hub Pro','lawyer-hub' ));
}
if ( ! defined( 'LAWYER_HUB_BUY_TEXT' ) ) {
define( 'LAWYER_HUB_BUY_TEXT', __( 'Upgrade Pro','lawyer-hub' ));
}
add_action( 'customize_register', function( $manager ) {
// Load custom sections.
load_template( trailingslashit( get_template_directory() ) . '/inc/section-pro.php' );
$manager->register_section_type( lawyer_hub_Button::class );
$manager->add_section(
new lawyer_hub_Button( $manager, 'lawyer_hub_pro', [
'title' => esc_html( LAWYER_HUB_TEXT,'lawyer-hub' ),
'priority' => 0,
'button_text' => __( 'GET PREMIUM', 'lawyer-hub' ),
'button_url' => esc_url( LAWYER_HUB_PRO_THEME_URL )
] )
);
} );
/**
* Singleton class for handling the theme's customizer integration.
*
* @since 1.0.0
* @access public
*/
final class Lawyer_Hub_Customize {
/**
* Returns the instance.
*
* @since 1.0.0
* @access public
* @return object
*/
public static function get_instance() {
static $instance = null;
if ( is_null( $instance ) ) {
$instance = new self;
$instance->setup_actions();
}
return $instance;
}
/**
* Constructor method.
*
* @since 1.0.0
* @access private
* @return void
*/
private function __construct() {}
/**
* Sets up initial actions.
*
* @since 1.0.0
* @access private
* @return void
*/
private function setup_actions() {
// Register panels, sections, settings, controls, and partials.
add_action( 'customize_register', array( $this, 'sections' ) );
// Register scripts and styles for the controls.
add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue_control_scripts' ), 0 );
}
/**
* Sets up the customizer sections.
*
* @since 1.0.0
* @access public
* @param object $manager
* @return void
*/
public function sections( $manager ) {
// Load custom sections.
load_template( trailingslashit( get_template_directory() ) . '/inc/section-pro.php' );
// Register custom section types.
$manager->register_section_type( 'Lawyer_Hub_Customize_Section_Pro' );
// Register sections.
$manager->add_section(
new Lawyer_Hub_Customize_Section_Pro(
$manager,
'lawyer_hub_section_pro',
array(
'priority' => 9,
'title' => LAWYER_HUB_PRO_THEME_NAME,
'pro_text' => esc_html__( 'Upgrade Pro', 'lawyer-hub' ),
'pro_url' => esc_url( LAWYER_HUB_PRO_THEME_URL, 'lawyer-hub' ),
)
)
);
$manager->add_section(
new Lawyer_Hub_Customize_Section_Pro(
$manager,
'lawyer_hub_documentation',
array(
'priority' => 500,
'title' => esc_html__( 'Theme Documentation', 'lawyer-hub' ),
'pro_text' => esc_html__( 'Click Here', 'lawyer-hub' ),
'pro_url' => esc_url( LAWYER_HUB_DOCS_URL, 'lawyer-hub'),
)
)
);
}
/**
* Loads theme customizer CSS.
*
* @since 1.0.0
* @access public
* @return void
*/
public function enqueue_control_scripts() {
wp_enqueue_script( 'lawyer-hub-customize-controls', trailingslashit( esc_url( get_template_directory_uri() ) ) . '/assets/js/customize-controls.js', array( 'customize-controls' ) );
wp_enqueue_style( 'lawyer-hub-customize-controls', trailingslashit( esc_url( get_template_directory_uri() ) ) . '/assets/css/customize-controls.css' );
}
}
// Doing this customizer thang!
Lawyer_Hub_Customize::get_instance();