Make WordPress Themes

source: multisport/1.0.2/sidebar-footer.php

Last change on this file was 72862, checked in by themedropbox, 9 years ago

New version of MultiSport - 1.0.2

File size: 2.8 KB
Line 
1<?php
2/**
3 * The sidebar containing the main footer columns widget areas
4 *
5 * @subpackage fBachFlowers
6 * @author customizablethemes
7 * @since fBachFlowers 1.0.0
8 *
9 */
10?>
11
12<div id="footer-cols">
13
14        <div id="footer-cols-inner">
15
16                <?php 
17                        /**
18                         * Display widgets dragged in 'Footer Columns 1' widget areas
19                         */
20                ?>
21                <div class="col3a">
22
23                        <?php if ( !dynamic_sidebar( 'footer-column-1-widget-area' ) && current_user_can('edit_theme_options') ) : ?>
24
25                                                <h2 class="footer-title">
26                                                        <?php _e('Footer Col Widget 1', 'multisport'); ?>
27                                                </h2><!-- .footer-title -->
28                                               
29                                                <div class="footer-after-title">
30                                                </div><!-- .footer-after-title -->
31                                               
32                                                <div class="textwidget">
33                                                        <?php _e('This is first footer widget area. To customize it, please navigate to Admin Panel -> Appearance -> Widgets and add widgets to Footer Column #1.', 'multisport'); ?>
34                                                </div><!-- .textwidget -->
35                       
36                        <?php endif; // end of ! dynamic_sidebar( 'footer-column-1-widget-area' )
37                                  ?>
38
39                </div><!-- .col3a -->
40               
41                <?php 
42                        /**
43                         * Display widgets dragged in 'Footer Columns 2' widget areas
44                         */
45                ?>
46                <div class="col3b">
47                        <?php if ( !dynamic_sidebar( 'footer-column-2-widget-area' ) && current_user_can('edit_theme_options') ) : ?>
48                       
49                                        <h2 class="footer-title">
50                                                <?php _e('Footer Col Widget 2', 'multisport'); ?>
51                                        </h2><!-- .footer-title -->
52                                       
53                                        <div class="footer-after-title">
54                                        </div><!-- .footer-after-title -->
55                                       
56                                        <div class="textwidget">
57                                                <?php _e('This is second footer widget area. To customize it, please navigate to Admin Panel -> Appearance -> Widgets and add widgets to Footer Column #2.', 'multisport'); ?>
58                                        </div><!-- .textwidget -->
59                                               
60                        <?php endif; // end of ! dynamic_sidebar( 'footer-column-2-widget-area' )
61                                  ?>
62                       
63                </div><!-- .col3b -->
64               
65                <?php 
66                        /**
67                         * Display widgets dragged in 'Footer Columns 3' widget areas
68                         */
69                ?>
70                <div class="col3c">
71                        <?php if ( !dynamic_sidebar( 'footer-column-3-widget-area' ) && current_user_can('edit_theme_options') ) : ?>
72                       
73                                        <h2 class="footer-title">
74                                                <?php _e('Footer Col Widget 3', 'multisport'); ?>
75                                        </h2><!-- .footer-title -->
76                                       
77                                        <div class="footer-after-title">
78                                        </div><!-- .footer-after-title -->
79                                       
80                                        <div class="textwidget">
81                                                <?php _e('This is third footer widget area. To customize it, please navigate to Admin Panel -> Appearance -> Widgets and add widgets to Footer Column #3.', 'multisport'); ?>
82                                        </div><!-- .textwidget -->
83                                               
84                        <?php endif; // end of ! dynamic_sidebar( 'footer-column-2-widget-area' )
85                                  ?>
86                       
87                </div><!-- .col3c -->
88               
89                <div class="clear">
90                </div><!-- .clear -->
91
92        </div><!-- #footer-cols-inner -->
93
94</div><!-- #footer-cols -->
Note: See TracBrowser for help on using the repository browser.