skip to Main Content

Conditionally Show/Hide Footer Widgets

add_action( 'wpex_display_footer_widgets', function( $bool ) {

	// Hide for all blog related queries and single posts
	if ( is_singular( 'post') || wpex_is_blog_query() ) {
		$bool = false;
	}

	// Return boolean
	return $bool;

} );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend Code Snippets)
Back To Top