Skip to content

Instantly share code, notes, and snippets.

@phpbits
Created August 30, 2018 08:57
Show Gist options
  • Select an option

  • Save phpbits/c64102f2c6ad553c878e67f8b0a799f8 to your computer and use it in GitHub Desktop.

Select an option

Save phpbits/c64102f2c6ad553c878e67f8b0a799f8 to your computer and use it in GitHub Desktop.
Display Custom Sidebar on Pages only
<?php if ( is_active_sidebar( 'page-only-custom-sidebar' ) && is_page() ) : ?>
<aside id="secondary" class="widget-area" role="complementary">
<?php dynamic_sidebar( 'page-only-custom-sidebar' ); ?>
</aside>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment