16 lines
339 B
JavaScript
16 lines
339 B
JavaScript
/**
|
|
* This file allows you to add functionality to the Theme Customizer
|
|
* live preview. jQuery is readily available.
|
|
*
|
|
* {@link https://codex.wordpress.org/Theme_Customization_API}
|
|
*/
|
|
|
|
/**
|
|
* Change the blog name value.
|
|
*
|
|
* @param {string} value
|
|
*/
|
|
wp.customize('blogname', value => {
|
|
value.bind(to => $('.brand').text(to));
|
|
});
|