selective_refresh ) ? 'postMessage' : 'refresh';
$wp_customize->get_section( 'header_image' )->panel = 'arilewp_theme_settings';
$wp_customize->get_section( 'header_image' )->title = __( 'Page Header', 'arilewp' );
$wp_customize->get_section( 'header_image' )->priority = 40;
// Sticky Bar Logo
$wp_customize->add_setting( 'arilewp_sticky_bar_logo', array(
'sanitize_callback' => 'esc_url_raw',
)
);
$wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'arilewp_sticky_bar_logo',
array(
'label' => esc_html__( 'Set Sticky Bar Logo', 'arilewp' ),
'description' => esc_html__( 'You can Upload the Standrad size of logo (210px*39px)', 'arilewp' ),
'section' => 'arilewp_theme_menu_bar',
'settings' => 'arilewp_sticky_bar_logo',
'priority' => 15,
)
));
$wp_customize->add_setting( 'arilewp_typography_base_font_family', array(
'sanitize_callback' => 'sanitize_text_field',
'default' => 'Open Sans',
) );
$wp_customize->add_control( new ArileWP_Customizer_Typography_Control( $wp_customize,'arilewp_typography_base_font_family', array(
'label' => esc_html__( 'Font Family', 'arilewp' ),
'section' => 'arilewp_base_typography',
'settings' => 'arilewp_typography_base_font_family',
'priority' => 10,
'type' => 'select',
'active_callback' => $active_callback,
) ) );
$wp_customize->add_setting( 'arilewp_typography_base_font_size',
array(
'default' => '1rem',
'sanitize_callback' => 'arilewp_sanitize_text',
));
$wp_customize->add_control( 'arilewp_typography_base_font_size',
array(
'label' => esc_html__( 'Font Size', 'arilewp' ),
'description' => esc_html__( 'You can enter font-size in px or rem ', 'arilewp' ),
'section' => 'arilewp_base_typography',
'priority' => 15,
'type' => 'text',
));
$wp_customize->add_setting( 'arilewp_typography_h1_font_family', array(
'sanitize_callback' => 'sanitize_text_field',
'default' => 'Source Sans Pro',
) );
$wp_customize->add_control( new ArileWP_Customizer_Typography_Control( $wp_customize,'arilewp_typography_h1_font_family', array(
'label' => esc_html__( 'Font Family', 'arilewp' ),
'section' => 'arilewp_headings1_typography',
'settings' => 'arilewp_typography_h1_font_family',
'priority' => 10,
'type' => 'select',
'active_callback' => $active_callback,
) ) );
$wp_customize->add_setting( 'arilewp_typography_h2_font_family', array(
'sanitize_callback' => 'sanitize_text_field',
'default' => 'Source Sans Pro',
) );
$wp_customize->add_control( new ArileWP_Customizer_Typography_Control( $wp_customize,'arilewp_typography_h2_font_family', array(
'label' => esc_html__( 'Font Family', 'arilewp' ),
'section' => 'arilewp_headings2_typography',
'settings' => 'arilewp_typography_h2_font_family',
'priority' => 10,
'type' => 'select',
'active_callback' => $active_callback,
) ) );
$wp_customize->add_setting( 'arilewp_typography_h3_font_family', array(
'sanitize_callback' => 'sanitize_text_field',
'default' => 'Source Sans Pro',
) );
$wp_customize->add_control( new ArileWP_Customizer_Typography_Control( $wp_customize,'arilewp_typography_h3_font_family', array(
'label' => esc_html__( 'Font Family', 'arilewp' ),
'section' => 'arilewp_headings3_typography',
'settings' => 'arilewp_typography_h3_font_family',
'priority' => 10,
'type' => 'select',
'active_callback' => $active_callback,
) ) );
$wp_customize->add_setting( 'arilewp_typography_h4_font_family', array(
'sanitize_callback' => 'sanitize_text_field',
'default' => 'Source Sans Pro',
) );
$wp_customize->add_control( new ArileWP_Customizer_Typography_Control( $wp_customize,'arilewp_typography_h4_font_family', array(
'label' => esc_html__( 'Font Family', 'arilewp' ),
'section' => 'arilewp_headings4_typography',
'settings' => 'arilewp_typography_h4_font_family',
'priority' => 10,
'type' => 'select',
'active_callback' => $active_callback,
) ) );
$wp_customize->add_setting( 'arilewp_typography_h5_font_family', array(
'sanitize_callback' => 'sanitize_text_field',
'default' => 'Source Sans Pro',
) );
$wp_customize->add_control( new ArileWP_Customizer_Typography_Control( $wp_customize,'arilewp_typography_h5_font_family', array(
'label' => esc_html__( 'Font Family', 'arilewp' ),
'section' => 'arilewp_headings5_typography',
'settings' => 'arilewp_typography_h5_font_family',
'priority' => 10,
'type' => 'select',
'active_callback' => $active_callback,
) ) );
$wp_customize->add_setting( 'arilewp_typography_h6_font_family', array(
'sanitize_callback' => 'sanitize_text_field',
'default' => 'Source Sans Pro',
) );
$wp_customize->add_control( new ArileWP_Customizer_Typography_Control( $wp_customize,'arilewp_typography_h6_font_family', array(
'label' => esc_html__( 'Font Family', 'arilewp' ),
'section' => 'arilewp_headings6_typography',
'settings' => 'arilewp_typography_h6_font_family',
'priority' => 10,
'type' => 'select',
'active_callback' => $active_callback,
) ) );
$wp_customize->add_setting(
'arilewp_footer_copright_text',
array(
'sanitize_callback' => 'arilewp_sanitize_text',
'default' => __('Copyright © 2023 | Powered by WordPress | ArileWP theme by ThemeArile', 'arilewp'),
'transport' => $selective_refresh,
)
);
$wp_customize->add_control('arilewp_footer_copright_text', array(
'label' => esc_html__('Footer Copyright','arilewp'),
'section' => 'arilewp_footer_copyright',
'priority' => 10,
'type' => 'textarea'
));
}
add_action( 'customize_register', 'arilewp_customizer_theme_settings' );
/*
* Customizer Notifications
*/
require get_template_directory() . '/inc/customizer/customizer-notice/arilewp-customizer-notify.php';
$arilewp_config_customizer = array(
'recommended_plugins' => array(
'arile-extra' => array(
'recommended' => true,
'description' => sprintf(
/* translators: %s: plugin name */
esc_html__( 'If you want to show all the features and business sections of the FrontPage. please install and activate %s plugin', 'arilewp' ), 'Arile Extra'
),
),
),
'recommended_actions' => array(),
'recommended_actions_title' => esc_html__( 'Recommended Actions', 'arilewp' ),
'recommended_plugins_title' => esc_html__( 'Recommended Plugin', 'arilewp' ),
'install_button_label' => esc_html__( 'Install and Activate', 'arilewp' ),
'activate_button_label' => esc_html__( 'Activate', 'arilewp' ),
'arilewp_deactivate_button_label' => esc_html__( 'Deactivate', 'arilewp' ),
);
ArileWP_Customizer_Notify::init( apply_filters( 'arilewp_customizer_notify_array', $arilewp_config_customizer ) );