Advertisement
artemsemkin

Kinsey theme: disable sidebar

Jan 7th, 2024 (edited)
1,205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. // Temporarily disable sidebar
  4. add_filter( 'is_active_sidebar', 'custom_filter_is_active_sidebar', 10, 2);
  5. function custom_filter_is_active_sidebar( $is_active_sidebar, $index ) {
  6.   if ( $index === 'blog-sidebar' ) {
  7.     return false;
  8.   }
  9.  
  10.   return $is_active_sidebar;
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement