Skip to content

Instantly share code, notes, and snippets.

@yuriitaran
Created November 20, 2017 15:01
Show Gist options
  • Select an option

  • Save yuriitaran/3daa8b27a64ba60fc3537f34c00879d9 to your computer and use it in GitHub Desktop.

Select an option

Save yuriitaran/3daa8b27a64ba60fc3537f34c00879d9 to your computer and use it in GitHub Desktop.
Check for active dynamic Sidebar
<!-- BEGIN of page content -->
<div class="<?php echo ( is_dynamic_sidebar('right') ) ? 'large-8 medium-8' : 'large-12 medium-12'; ?> small-12 columns">
bla-bla-bla ...
</div>
<!-- END of page content -->
<!-- BEGIN of sidebar -->
<?php if ( is_dynamic_sidebar('right') ): ?>
<div class="large-4 medium-4 small-12 columns sidebar">
<?php get_sidebar('right'); ?>
</div>
<?php endif; ?>
<!-- END of sidebar -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment