Advertisement
munirmahmud6

WP Customizer postMessage JS Script

Feb 12th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. wp.customize( 'tp_show_author_bio', (value) => {
  2.     value.bind((to) => {
  3.         if (to) {
  4.             $('.author-bio').show();
  5.         } else {
  6.             $('.author-bio').hide();           
  7.         }      
  8.     });
  9. } );
  10.  
  11.  
  12. wp.customize( 'copyright_info', ( value ) => {
  13.     value.bind( ( to ) => {
  14.         $('.tp-copyright').html(to);
  15.        
  16.     } );
  17. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement