Guest User

Untitled

a guest
Aug 13th, 2025
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. // remove global section on specific page
  2. add_action('wp','salient_child_mod_global_sections', 9);
  3.  
  4. function salient_child_mod_global_sections() {
  5.  
  6. if( is_front_page() ) {
  7. remove_action( 'wp', array(Nectar_Global_Sections_Render::get_instance(), 'frontend_display' ));
  8. }
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment