jamesmcbennett

footer.php

Feb 29th, 2012
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. <?php if ( prima_get_option('footertop') || prima_get_option('footerbottom') ) : ?>
  2. <div id="footer" class="container">
  3. <div class="margin">
  4. <?php
  5. if ( prima_get_option('footertop') )
  6. get_sidebar( 'footer-top' );
  7. if ( prima_get_option('footerbottom') )
  8. get_sidebar( 'footer-bottom' );
  9. ?>
  10. </div>
  11. </div>
  12. <?php endif; ?>
  13.  
  14. </div><!-- close #flexi-wrapper -->
  15.  
  16. <div id="copyright" class="container">
  17. <div class="margin">
  18. <?php $copyright = prima_get_option('copyright');
  19. if ( !$copyright ) $copyright = __( 'Copyright &copy; 2011 &middot; WP FlexiShop', PRIMA_DOMAIN );
  20. echo wpautop( $copyright ); ?>
  21. </div>
  22. </div>
  23.  
  24. <?php if ( prima_get_option('topcategories') || prima_get_option('topcart') ) : ?>
  25. <div id="top-header">
  26. <div class="margin">
  27. <div id="top-header-nav">
  28. <?php if(prima_get_option('topcart')&&class_exists('WP_eCommerce')) get_template_part( 'flexi-topbar-cart' ); ?>
  29. <?php if(prima_get_option('topcategories')&&class_exists('WP_eCommerce')) get_template_part( 'flexi-topbar-categories' ); ?>
  30. </div>
  31. </div>
  32. </div>
  33. <?php endif; ?>
  34.  
  35. <?php wp_footer(); ?>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment