themes-wordpress/seedlet/inc/wpcom-customize-preview.js
2020-07-01 13:55:23 -04:00

21 lines
538 B
JavaScript
Executable file

/**
* File wpcom-customize-preview.js.
*
* Instantly live-update customizer settings in the preview for improved user experience,
* targeting the updates needed to hide the page title on the homepage on WordPress.com.
*/
( function( $ ) {
// Hide Front Page Title
wp.customize( 'hide_front_page_title', function( value ) {
value.bind( function( to ) {
if ( true === to ) {
$( 'body' ).addClass( 'hide-homepage-title' );
} else {
$( 'body' ).removeClass( 'hide-homepage-title' );
}
} );
} );
} )( jQuery );