themes-wordpress/varia/inc/customize-preview-wpcom.js
2019-07-18 23:24:52 -04:00

21 lines
538 B
JavaScript
Executable file

/**
* File customize-preview-wpcom.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 );