sidebar.php 353 B

12345678910111213141516
  1. <?php
  2. /**
  3. * The sidebar containing the main widget area.
  4. *
  5. * @package Button 2
  6. */
  7. if ( ! is_active_sidebar( 'sidebar-1' ) && ! has_nav_menu( 'jetpack-social-menu' ) ) {
  8. return;
  9. }
  10. ?>
  11. <div id="secondary" class="widget-area" role="complementary">
  12. <?php button_2_social_menu(); ?>
  13. <?php dynamic_sidebar( 'sidebar-1' ); ?>
  14. </div><!-- #secondary -->