Server IP : 192.64.118.117 / Your IP : 18.222.153.154 Web Server : LiteSpeed System : Linux premium56.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : thecgapy ( 1160) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/thecgapy/www/wp-content/themes/twentyfifteen/js/ |
Upload File : |
/** * Live-update changed settings in real time in the Customizer preview. */ ( function( $ ) { var $style = $( '#twentyfifteen-color-scheme-css' ), api = wp.customize; if ( ! $style.length ) { $style = $( 'head' ).append( '<style type="text/css" id="twentyfifteen-color-scheme-css" />' ) .find( '#twentyfifteen-color-scheme-css' ); } // Site title. api( 'blogname', function( value ) { value.bind( function( to ) { $( '.site-title a' ).text( to ); } ); } ); // Site tagline. api( 'blogdescription', function( value ) { value.bind( function( to ) { $( '.site-description' ).text( to ); } ); } ); // Color Scheme CSS. api.bind( 'preview-ready', function() { api.preview.bind( 'update-color-scheme-css', function( css ) { $style.html( css ); } ); } ); } )( jQuery );