????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.17.157.68 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.se/wp-content/themes/x/framework/functions/global/admin/customizer/ |
Upload File : |
<?php // ============================================================================= // FUNCTIONS/GLOBAL/ADMIN/CUSTOMIZER/SETUP.PHP // ----------------------------------------------------------------------------- // Initializes and sets up the WordPress Live Preview feature by including // sections, controls, and settings. // // - Sections: organize the controls. // - Controls: receive input and pass it to the settings. // - Settings: interface with the existing options in the theme. // ============================================================================= // ============================================================================= // TABLE OF CONTENTS // ----------------------------------------------------------------------------- // 01. Set Path // 02. Require Files // 03. Update Native Customizer Functionality // 04. Overwrite Cached Options During Customizer Preview // ============================================================================= // Set Path // ============================================================================= $cstm_path = X_TEMPLATE_PATH . '/framework/functions/global/admin/customizer'; // Require Files // ============================================================================= require_once( $cstm_path . '/controls.php' ); require_once( $cstm_path . '/fonts.php' ); require_once( $cstm_path . '/register.php' ); require_once( $cstm_path . '/output.php' ); require_once( $cstm_path . '/transients.php' ); require_once( $cstm_path . '/preloader.php' ); // Update Native Customizer Functionality // ============================================================================= function x_update_native_customizer_functionality( $wp_customize ) { $wp_customize->remove_section( 'nav' ); $wp_customize->remove_section( 'colors' ); $wp_customize->remove_section( 'themes' ); $wp_customize->remove_section( 'title_tagline' ); $wp_customize->remove_section( 'background_image' ); $wp_customize->remove_section( 'static_front_page' ); $wp_customize->remove_control( 'blogname' ); $wp_customize->remove_control( 'blogdescription' ); $wp_customize->remove_control( 'nav_menu_locations[primary]' ); $wp_customize->remove_control( 'nav_menu_locations[footer]' ); // if ( $wp_customize->get_control( 'site_icon' ) ) { // $wp_customize->get_control( 'site_icon' )->section = 'x_customizer_section_social'; // $wp_customize->get_control( 'site_icon' )->priority = '1000'; // $wp_customize->get_control( 'site_icon' )->description = ''; // } } add_action( 'customize_register', 'x_update_native_customizer_functionality' ); // Overwrite Cached Options During Customizer Preview // ============================================================================= function x_inject_customizer_preview_options() { add_filter( 'pre_option_x_cache_customizer_css', 'x_customizer_get_css' ); add_filter( 'pre_option_x_cache_google_fonts_request', 'x_get_google_fonts_request' ); } add_action( 'customize_preview_init', 'x_inject_customizer_preview_options' );