Files
sage/resources/scripts/customizer.js
Kelly Mears 69dfbfc65c Replace Laravel Mix with Bud (#2643)
Co-authored-by: QWp6t <hi@qwp6t.me>
Co-authored-by: Ben Word <ben@benword.com>
2021-11-21 23:53:01 -06:00

14 lines
312 B
JavaScript

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