Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php if ( prima_get_option('footertop') || prima_get_option('footerbottom') ) : ?>
- <div id="footer" class="container">
- <div class="margin">
- <?php
- if ( prima_get_option('footertop') )
- get_sidebar( 'footer-top' );
- if ( prima_get_option('footerbottom') )
- get_sidebar( 'footer-bottom' );
- ?>
- </div>
- </div>
- <?php endif; ?>
- </div><!-- close #flexi-wrapper -->
- <div id="copyright" class="container">
- <div class="margin">
- <?php $copyright = prima_get_option('copyright');
- if ( !$copyright ) $copyright = __( 'Copyright © 2011 · WP FlexiShop', PRIMA_DOMAIN );
- echo wpautop( $copyright ); ?>
- </div>
- </div>
- <?php if ( prima_get_option('topcategories') || prima_get_option('topcart') ) : ?>
- <div id="top-header">
- <div class="margin">
- <div id="top-header-nav">
- <?php if(prima_get_option('topcart')&&class_exists('WP_eCommerce')) get_template_part( 'flexi-topbar-cart' ); ?>
- <?php if(prima_get_option('topcategories')&&class_exists('WP_eCommerce')) get_template_part( 'flexi-topbar-categories' ); ?>
- </div>
- </div>
- </div>
- <?php endif; ?>
- <?php wp_footer(); ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment