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: site.php
<?php /** * Site Title Setting * * @package Vandana_Lite */ function vandana_lite_customize_register( $wp_customize ) { $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'background_color' )->transport = 'refresh'; $wp_customize->get_setting( 'background_image' )->transport = 'refresh'; if( isset( $wp_customize->selective_refresh ) ){ $wp_customize->selective_refresh->add_partial( 'blogname', array( 'selector' => '.site-title a', 'render_callback' => 'vandana_lite_customize_partial_blogname', ) ); $wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'selector' => '.site-description', 'render_callback' => 'vandana_lite_customize_partial_blogdescription', ) ); } /** Site Logo Size */ $wp_customize->add_setting( 'site_logo_size', array( 'default' => 70, 'sanitize_callback' => 'vandana_lite_sanitize_number_absint', 'transport' => 'postMessage' ) ); $wp_customize->add_control( 'site_logo_size', array( 'type' => 'number', 'section' => 'title_tagline', 'label' => __( 'Set the width(px) of your Site Logo', 'vandana-lite' ), ) ); /** Site Title Font */ $wp_customize->add_setting( 'site_title_font', array( 'default' => array( 'font-family' => 'Halant', 'variant' => '700', ), 'sanitize_callback' => array( 'Vandana_Lite_Fonts', 'sanitize_typography' ) ) ); $wp_customize->add_control( new Vandana_Lite_Typography_Control( $wp_customize, 'site_title_font', array( 'label' => __( 'Site Title Font', 'vandana-lite' ), 'description' => __( 'Site title and tagline font.', 'vandana-lite' ), 'section' => 'title_tagline', 'priority' => 60, ) ) ); /** Site Title Font Size*/ $wp_customize->add_setting( 'site_title_font_size', array( 'default' => 30, 'sanitize_callback' => 'vandana_lite_sanitize_number_absint' ) ); $wp_customize->add_control( new Vandana_Lite_Slider_Control( $wp_customize, 'site_title_font_size', array( 'section' => 'title_tagline', 'label' => __( 'Site Title Font Size', 'vandana-lite' ), 'description' => __( 'Change the font size of your site title.', 'vandana-lite' ), 'priority' => 65, 'choices' => array( 'min' => 10, 'max' => 200, 'step' => 1, ) ) ) ); /** Site Title Color*/ $wp_customize->add_setting( 'site_title_color', array( 'default' => '#111111', 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'site_title_color', array( 'label' => __( 'Site Title Color', 'vandana-lite' ), 'description' => __( 'Site Title color of the theme.', 'vandana-lite' ), 'section' => 'title_tagline', 'priority' => 66, ) ) ); } add_action( 'customize_register', 'vandana_lite_customize_register' );
Upload File
Create Folder