arie_cristianD

hide desktop header midbar

Nov 23rd, 2025
518
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. add_action(
  2.     'customize_controls_enqueue_scripts',
  3.     function () {
  4.         $custom_css = '
  5.        .header-builder-desktop .header-builder-wrapper .header-builder-mid {
  6.            display : none ;
  7.        }
  8.    ';
  9.         wp_register_style( 'custom-customizer-inline-style', false );
  10.         wp_enqueue_style( 'custom-customizer-inline-style' );
  11.  
  12.         wp_add_inline_style( 'custom-customizer-inline-style', $custom_css );
  13.     }
  14. );
Advertisement
Add Comment
Please, Sign In to add comment