Make WordPress Themes

source: ultimate-ecommerce-shop/0.6.6/sidebar.php

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

New version of Ultimate Ecommerce Shop - 0.3.6

File size: 916 bytes
Line 
1<?php
2/**
3 * The Sidebar containing the main widget areas.
4 * @package Ultimate Ecommerce Shop
5 */
6?>
7<div id="sidebar">    
8    <?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?>
9        <aside role="complementary" aria-label="sidebar-1" id="archives" class="widget">
10            <h3 class="widget-title"><?php esc_html_e( 'Archives', 'ultimate-ecommerce-shop' ); ?></h3>
11            <ul>
12                <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
13            </ul>
14        </aside>
15        <aside role="complementary" aria-label="sidebar-2" id="meta" class="widget">
16            <h3 class="widget-title"><?php esc_html_e( 'Meta', 'ultimate-ecommerce-shop' ); ?></h3>
17            <ul>
18                <?php wp_register(); ?>
19                <li><?php wp_loginout(); ?></li>
20                <?php wp_meta(); ?>
21            </ul>
22        </aside>
23    <?php endif; // end sidebar widget area ?> 
24</div>
Note: See TracBrowser for help on using the repository browser.