123456789101112131415161718192021 |
- /**
- * 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 );
|