Advertisement
Guest User

Responsive theme sidebar change

a guest
Dec 25th, 2012
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. Replace:
  2.  
  3.  
  4. <?php if (!dynamic_sidebar('main-sidebar')) : ?>
  5. <div class="widget-wrapper">
  6. <div class="widget-title"><?php _e('In Archive', 'responsive'); ?></div>
  7. <ul>
  8. <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
  9. </ul>
  10. </div><!-- end of .widget-wrapper -->
  11. <?php endif; //end of main-sidebar ?>
  12.  
  13.  
  14. with
  15.  
  16. <?php if ( is_active_sidebar( 'main-sidebar' ) ) : ?>
  17. <?php dynamic_sidebar( 'main-sidebar' ); ?>
  18. <?php endif; //end of main-sidebar ?>
  19.  
  20. That way, the widget background only show up when there's content or if a widget was added.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement