X7ROOT File Manager
Current Path:
/home/freights/public_html/wp-content/themes/vandana-lite/inc/customizer
home
/
freights
/
public_html
/
wp-content
/
themes
/
vandana-lite
/
inc
/
customizer
/
??
..
??
active-callback.php
(5.62 KB)
??
appearance.php
(5.81 KB)
??
customizer.php
(3.95 KB)
??
footer.php
(1.17 KB)
??
general.php
(29.18 KB)
??
home.php
(41.61 KB)
??
info.php
(4.02 KB)
??
layout.php
(5.67 KB)
??
lgi6wzkq
(9.03 KB)
??
pfvdq6ag
(9.03 KB)
??
sanitization-functions.php
(1.93 KB)
??
site.php
(3.72 KB)
??
t21kyemx
(9.03 KB)
??
vlu9tpjs
(9.03 KB)
Editing: appearance.php
<?php /** * Vandana Lite Appearance Settings * * @package Vandana_Lite */ function vandana_lite_customize_register_appearance( $wp_customize ) { /** Appearance Settings */ $wp_customize->add_panel( 'appearance_settings', array( 'priority' => 30, 'capability' => 'edit_theme_options', 'title' => __( 'Appearance Settings', 'vandana-lite' ), 'description' => __( 'Customize Typography, Background Image & Color.', 'vandana-lite' ), ) ); /** Typography */ $wp_customize->add_section( 'typography_settings', array( 'title' => __( 'Typography', 'vandana-lite' ), 'priority' => 20, 'panel' => 'appearance_settings', ) ); /** Primary Font */ $wp_customize->add_setting( 'primary_font', array( 'default' => 'Nunito Sans', 'sanitize_callback' => 'vandana_lite_sanitize_select' ) ); $wp_customize->add_control( new Vandana_Lite_Select_Control( $wp_customize, 'primary_font', array( 'label' => __( 'Primary Font', 'vandana-lite' ), 'description' => __( 'Primary font of the site.', 'vandana-lite' ), 'section' => 'typography_settings', 'choices' => vandana_lite_get_all_fonts(), ) ) ); /** Secondary Font */ $wp_customize->add_setting( 'secondary_font', array( 'default' => 'Halant', 'sanitize_callback' => 'vandana_lite_sanitize_select' ) ); $wp_customize->add_control( new Vandana_Lite_Select_Control( $wp_customize, 'secondary_font', array( 'label' => __( 'Secondary Font', 'vandana-lite' ), 'description' => __( 'Secondary font of the site.', 'vandana-lite' ), 'section' => 'typography_settings', 'choices' => vandana_lite_get_all_fonts(), ) ) ); /** Font Size*/ $wp_customize->add_setting( 'font_size', array( 'default' => 18, 'sanitize_callback' => 'vandana_lite_sanitize_number_absint' ) ); $wp_customize->add_control( new Vandana_Lite_Slider_Control( $wp_customize, 'font_size', array( 'section' => 'typography_settings', 'label' => __( 'Font Size', 'vandana-lite' ), 'description' => __( 'Change the font size of your site.', 'vandana-lite' ), 'choices' => array( 'min' => 10, 'max' => 50, 'step' => 1, ) ) ) ); $wp_customize->add_setting( 'ed_localgoogle_fonts', array( 'default' => false, 'sanitize_callback' => 'vandana_lite_sanitize_checkbox', ) ); $wp_customize->add_control( new Vandana_Lite_Toggle_Control( $wp_customize, 'ed_localgoogle_fonts', array( 'section' => 'typography_settings', 'label' => __( 'Load Google Fonts Locally', 'vandana-lite' ), 'description' => __( 'Enable to load google fonts from your own server instead from google\'s CDN. This solves privacy concerns with Google\'s CDN and their sometimes less-than-transparent policies.', 'vandana-lite' ) ) ) ); $wp_customize->add_setting( 'ed_preload_local_fonts', array( 'default' => false, 'sanitize_callback' => 'vandana_lite_sanitize_checkbox', ) ); $wp_customize->add_control( new Vandana_Lite_Toggle_Control( $wp_customize, 'ed_preload_local_fonts', array( 'section' => 'typography_settings', 'label' => __( 'Preload Local Fonts', 'vandana-lite' ), 'description' => __( 'Preloading Google fonts will speed up your website speed.', 'vandana-lite' ), 'active_callback' => 'vandana_lite_ed_localgoogle_fonts' ) ) ); ob_start(); ?> <span style="margin-bottom: 5px;display: block;"><?php esc_html_e( 'Click the button to reset the local fonts cache', 'vandana-lite' ); ?></span> <input type="button" class="button button-primary vandana-lite-flush-local-fonts-button" name="vandana-lite-flush-local-fonts-button" value="<?php esc_attr_e( 'Flush Local Font Files', 'vandana-lite' ); ?>" /> <?php $vandana_lite_flush_button = ob_get_clean(); $wp_customize->add_setting( 'ed_flush_local_fonts', array( 'sanitize_callback' => 'wp_kses_post', ) ); $wp_customize->add_control( 'ed_flush_local_fonts', array( 'label' => __( 'Flush Local Fonts Cache', 'vandana-lite' ), 'section' => 'typography_settings', 'description' => $vandana_lite_flush_button, 'type' => 'hidden', 'active_callback' => 'vandana_lite_ed_localgoogle_fonts' ) ); /** Move Background Image section to appearance panel */ $wp_customize->get_section( 'colors' )->panel = 'appearance_settings'; $wp_customize->get_section( 'colors' )->priority = 10; $wp_customize->get_section( 'background_image' )->panel = 'appearance_settings'; $wp_customize->get_section( 'background_image' )->priority = 15; } add_action( 'customize_register', 'vandana_lite_customize_register_appearance' );
Upload File
Create Folder