customize-preview-wpcom.js 538 B

123456789101112131415161718192021
  1. /**
  2. * File customize-preview-wpcom.js.
  3. *
  4. * Instantly live-update customizer settings in the preview for improved user experience,
  5. * targeting the updates needed to hide the page title on the homepage on WordPress.com.
  6. */
  7. ( function( $ ) {
  8. // Hide Front Page Title
  9. wp.customize( 'hide_front_page_title', function( value ) {
  10. value.bind( function( to ) {
  11. if ( true === to ) {
  12. $( 'body' ).addClass( 'hide-homepage-title' );
  13. } else {
  14. $( 'body' ).removeClass( 'hide-homepage-title' );
  15. }
  16. } );
  17. } );
  18. } )( jQuery );