-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsidebar.php
executable file
·51 lines (42 loc) · 2.1 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
<?php if (dynamic_sidebar('Sidebar Widgets')) : else : ?>
<!-- All this stuff in here only shows up if you DON'T have any widgets active in this zone -->
<div class="widget-container">
<h2 class="widget-title">Eclipse Pro</h2>
<p>Thank you for purchasing Eclipse Pro.</p>
<p>We designed Eclipse Pro to be as user friendly as possible, but if you do run into trouble we provide a <a href="http://cyberchimps.com/forum">support forum</a>, and <a href="http://www.cyberchimps.com/eclipsepro/docs/">precise documentation</a>.</p>
</div>
<div class="widget-container">
<h2 class="widget-title"><?php printf( __('Pages', 'ifeature' )); ?></h2>
<ul>
<?php wp_list_pages('title_li=' ); ?>
</ul>
</div>
<div class="widget-container">
<h2 class="widget-title"><?php printf( __( 'Archives', 'ifeature' )); ?></h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</div>
<div class="widget-container">
<h2 class="widget-title"><?php printf( __('Categories', 'ifeature' )); ?></h2>
<ul>
<?php wp_list_categories('show_count=1&title_li='); ?>
</ul>
</div>
<div class="widget-container">
<h2 class="widget-title"><?php printf( __('WordPress', 'ifeature' )); ?></h2>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<li><a href="<?php echo esc_url( __('http://wordpress.org/', 'ifeature' )); ?>" target="_blank" title="<?php esc_attr_e('Powered by WordPress, state-of-the-art semantic personal publishing platform.', 'ifeature'); ?>"> <?php printf( __('WordPress', 'ifeature' )); ?></a></li>
<?php wp_meta(); ?>
</ul>
</div>
<div class="widget-container">
<h2 class="widget-title"><?php printf( __('Subscribe', 'ifeature' )); ?></h2>
<ul>
<li><a href="<?php bloginfo('rss2_url'); ?>"><?php printf( __('Entries (RSS)', 'ifeature' )); ?></a></li>
<li><a href="<?php bloginfo('comments_rss2_url'); ?>"><?php printf( __('Comments (RSS)', 'ifeature' )); ?></a></li>
</ul>
</div>
<?php endif; ?>