Guest User

swatch sidebar.php

a guest
Jan 30th, 2012
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php
  2. // Don't display sidebar if full width
  3. global $woo_options;
  4. if ( isset( $woo_options['woo_layout'] ) && $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 } ?>
  13.  
  14. </div><!-- /#sidebar -->
  15. <?php } ?>
Add Comment
Please, Sign In to add comment