Skip to content

Instantly share code, notes, and snippets.

@broskees
Last active December 9, 2021 20:19
Show Gist options
  • Save broskees/7c07e438699ff1f5db320084c219ba00 to your computer and use it in GitHub Desktop.
Save broskees/7c07e438699ff1f5db320084c219ba00 to your computer and use it in GitHub Desktop.
Sage 9 Conditional Sidebars
<?php
add_filter('sage/display_sidebar', function ($display) {
static $display;
isset($display) || $display = in_array(true, [
// The sidebar will be displayed if any of the following return true
is_single(),
is_404(),
is_page_template('views/template-custom.blade.php')
]);
return $display;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment