Advertisement
DidouS

20221206-SL-remove layouts besides on pages

Dec 6th, 2022 (edited)
1,129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. add_filter( 'fl_theme_builder_current_page_layouts' , 'header_footer_only_on_pages' );
  2.  
  3. function header_footer_only_on_pages( $layouts ) {
  4.  
  5.     if ( !is_singular( 'page' ) ) {
  6.  
  7.         if ( isset( $layouts[ 'header' ] ) ) unset( $layouts[ 'header' ] );
  8.         if ( isset( $layouts[ 'footer' ] ) ) unset( $layouts[ 'footer' ] );
  9.  
  10.     }
  11.  
  12.     return $layouts;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement