Skip to content
Site Under Re-Design: We're updating & improving the docs! Some layouts or content may look broken or inconsistent during this process. If you’re unable to find an article, please use the search bar while we restructure and optimize the sidebar navigation.

Snippet: Remove Search Results Sidebar

// Remove Search Results Sidebar
function remove_search_sidebar( $layout ) {
	if ( is_search() ) {
		$layout = 'full-width';
	}
	return $layout;
}
add_filter( 'wpex_post_layout_class', 'remove_search_sidebar', 20 );
All PHP snippets should be added via child theme's functions.php file or via a plugin.
We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top