Skip to content

Snippet: Hide Footer Callout For All Blog Archives & Posts

add_filter( 'totaltheme/footer/callout/is_enabled', function( $bool ) {
	if ( wpex_is_blog_query() || is_singular( 'post' ) ) {
		$bool = false;
	}
	return $bool;
}, 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