-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsidebar.php
executable file
·73 lines (62 loc) · 2.17 KB
/
sidebar.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/**
* Title: Sidebar Template
*
* Description: Defines sidebar content.
*
* Please do not edit this file. This file is part of the Cyber Chimps Framework and all modifications
* should be made in a child theme.
*
* @category Cyber Chimps Framework
* @package Framework
* @since 1.0
* @author CyberChimps
* @license http://www.opensource.org/licenses/gpl-license.php GPL v3.0 (or later)
* @link http://www.cyberchimps.com/
*/
?>
<div id="secondary" <?php cyberchimps_filter_sidebar_right_class(); ?>>
<?php do_action( 'cyberchimps_before_sidebar' ); ?>
<div id="sidebar">
<?php if( !dynamic_sidebar( 'sidebar-right' ) ) : ?>
<div class="widget-container">
<h3 class="widget-title"><?php _e( 'Pages', 'eclipse' ); ?></h3>
<ul>
<?php wp_list_pages( 'title_li=' ); ?>
</ul>
</div>
<div class="widget-container">
<h3 class="widget-title"><?php _e( 'Archives', 'eclipse' ); ?></h3>
<ul>
<?php wp_get_archives( 'type=monthly' ); ?>
</ul>
</div>
<div class="widget-container">
<h3 class="widget-title"><?php _e( 'Categories', 'eclipse' ); ?></h3>
<ul>
<?php wp_list_categories( 'show_count=1&title_li=' ); ?>
</ul>
</div>
<div class="widget-container">
<h3 class="widget-title"><?php _e( 'WordPress', 'eclipse' ); ?></h3>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="<?php echo esc_url( __( 'http://wordpress.org/', 'eclipse' ) ); ?>" target="_blank"
title="<?php esc_attr_e( 'Powered by WordPress, state-of-the-art semantic personal publishing platform.', 'eclipse' ); ?>"> <?php _e( 'WordPress', 'eclipse' ); ?></a>
</li>
<?php wp_meta(); ?>
</ul>
</div>
<div class="widget-container">
<h3 class="widget-title"><?php _e( 'Subscribe', 'eclipse' ); ?></h3>
<ul>
<li><a href="<?php bloginfo( 'rss2_url' ); ?>"><?php _e( 'Entries (RSS)', 'eclipse' ); ?></a></li>
<li><a href="<?php bloginfo( 'comments_rss2_url' ); ?>"><?php _e( 'Comments (RSS)', 'eclipse' ); ?></a></li>
</ul>
</div>
<?php endif; ?>
</div>
<!-- #sidebar -->
<?php do_action( 'cyberchimps_after_sidebar' ); ?>
</div><!-- #secondary -->