Advertisement
mariareh64

sidebar.php

Sep 18th, 2012
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. // Don't display sidebar if full width
  3. global $woo_options;
  4. if ( $woo_options['woo_layout'] != "layout-full" ) :
  5. ?>
  6. <div id="sidebar" class="col-right">
  7.  
  8. <?php if (woo_active_sidebar('primary')) : ?>
  9. <div class="primary">
  10. <?php woo_sidebar('primary'); ?>
  11. </div>
  12. <?php endif; ?>
  13.  
  14. </div><!-- /#sidebar -->
  15.  
  16. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement