Make WordPress Themes

source: multisport/1.6.3/footer.php

Last change on this file was 139039, checked in by themedropbox, 5 years ago

New version of MultiSport - 1.3.9

File size: 1.3 KB
Line 
1<?php
2/**
3 * The template for displaying the footer
4 *
5 * Contains the closing of the "body-content-wrapper" div and all content after.
6 *
7 */
8?>
9                        <a href="#" class="scrollup"></a>
10
11                        <footer id="footer-main">
12
13                                <div id="footer-content-wrapper">
14
15                                        <?php get_sidebar( 'footer' ); ?>
16
17                                        <nav id="footer-menu">
18                        <?php wp_nav_menu( array( 'theme_location' => 'footer', ) ); ?>
19                    </nav>
20
21                                        <div class="clear">
22                                        </div>
23
24                                </div><!-- #footer-content-wrapper -->
25
26                        </footer>
27                        <div id="footer-bottom-area">
28                                <div id="footer-bottom-content-wrapper">
29                                        <div id="copyright">
30                                                <p>
31                                                        <?php multisport_show_copyright_text(); ?>
32                                                        <a href="<?php echo esc_url( 'https://customizablethemes.com/product/multisport' ); ?>"
33                                                                title="<?php esc_attr_e( 'MultiSport Theme', 'multisport' ); ?>">
34                                                                <?php esc_html_e('MultiSport Theme', 'multisport'); ?>
35                                                        </a>
36                                                        <?php
37                                                                /* translators: %s: WordPress name */
38                                                                printf( __( 'Powered by %s', 'multisport' ), 'WordPress' ); ?>
39                                                </p>
40                                        </div><!-- #copyright -->
41                                </div>
42                        </div><!-- #footer-main -->
43
44                </div><!-- #body-content-wrapper -->
45                <?php wp_footer(); ?>
46        </body>
47</html>
Note: See TracBrowser for help on using the repository browser.