| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- /**
- * The template for displaying the footer
- *
- * Contains the closing of the #content div and all content after.
- *
- * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
- *
- * @package XShop
- */
- ?>
- <footer id="colophon" class="site-footer <?php if(is_active_sidebar( 'footer-widget' )): ?>has-footer-widget<?php endif; ?>">
- <?php if(is_active_sidebar( 'footer-widget' )): ?>
- <div class="footer-widget footer-top bg-dark text-white pt-3 pb-3">
- <div class="container">
- <?php dynamic_sidebar( 'footer-widget' ); ?>
- </div>
- </div>
- <?php endif; ?>
- <div class="site-info text-center pt-3 pb-3 ">
- <div class="container">
- <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'xshop' ) ); ?>">
- <?php
- /* translators: %s: CMS name, i.e. WordPress. */
- printf( esc_html__( 'Proudly powered by %s', 'xshop' ), 'WordPress' );
- ?>
- </a>
- <span class="sep"> | </span>
- <?php
- /* translators: 1: Theme name, 2: Theme author. */
- printf(esc_html__('%1$s by %2$s.', 'xshop'), '<a href="https://wpthemespace.com/product/xshop/">X Shop</a>', 'Wp Theme Space');
- ?>
-
- </div><!-- .site-info -->
- </div><!-- .container -->
- </footer><!-- #colophon -->
- </div><!-- #page -->
- <?php
- if ( function_exists( 'xshop_woocommerce_header_cart' ) ) {
- xshop_woocommerce_header_cart();
- }
- ?>
- <?php wp_footer(); ?>
- </body>
- </html>
|