Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
pokeloken
/
admin
/
wp-content
/
themes
/
internet-provider
/
js
:
customize-preview.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
/** * Live-update changed settings in real time in the Customizer preview. */ ( function( $ ) { api = wp.customize; // Site title. api( 'blogname', function( value ) { value.bind( function( to ) { $( '.logo h1' ).text( to ); } ); } ); // Site tagline. api( 'blogdescription', function( value ) { value.bind( function( to ) { $( '.logo span' ).text( to ); } ); } ); } )( jQuery );