Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // Temporarily disable sidebar
- add_filter( 'is_active_sidebar', 'custom_filter_is_active_sidebar', 10, 2);
- function custom_filter_is_active_sidebar( $is_active_sidebar, $index ) {
- if ( $index === 'blog-sidebar' ) {
- return false;
- }
- return $is_active_sidebar;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement