PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom
/
wp-content
/
themes
/
sydney-pro-ii
/
inc
/
customizer
/
options
<?php /** * Performance Customizer Options * * @package Sydney */ $wp_customize->add_section( 'sydney_section_performance', array( 'title' => esc_html__( 'Performance', 'sydney' ), 'panel' => 'sydney_panel_general', 'priority' => 999 ) ); $wp_customize->add_setting( 'perf_google_fonts_local', array( 'default' => 0, 'sanitize_callback' => 'sydney_sanitize_checkbox' ) ); $wp_customize->add_control( new Sydney_Toggle_Control( $wp_customize, 'perf_google_fonts_local', array( 'label' => esc_html__( 'Load Google Fonts Locally?', 'sydney' ), 'description' => esc_html__( 'This option refers only to Google Fonts loaded by the theme, not by third-party plugins.', 'sydney' ), 'section' => 'sydney_section_performance', ) ) ); $wp_customize->add_setting( 'perf_disable_preconnect', array( 'default' => 0, 'sanitize_callback' => 'sydney_sanitize_checkbox' ) ); $wp_customize->add_control( new Sydney_Toggle_Control( $wp_customize, 'perf_disable_preconnect', array( 'label' => esc_html__( 'Disable Google Fonts preconnect', 'sydney' ), 'section' => 'sydney_section_performance', ) ) );
[+]
..
[+]
modules
[-] blog-single.php
[edit]
[-] blog.php
[edit]
[-] colors.php
[edit]
[-] cpt-panels.php
[edit]
[-] footer.php
[edit]
[-] general.php
[edit]
[-] header-mobile.php
[edit]
[-] header.php
[edit]
[-] hero-area.php
[edit]
[-] layouts.php
[edit]
[-] performance.php
[edit]
[-] topbar.php
[edit]
[-] typography.php
[edit]
[-] woocommerce-single.php
[edit]
[-] woocommerce.php
[edit]
[-] .htaccess.disabled
[edit]