-
Notifications
You must be signed in to change notification settings - Fork 1
/
sidebar.php
42 lines (40 loc) · 1.75 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
<?php
/**
* @package WordPress
* @subpackage PulsePress
*/
?>
<?php if ( !pulse_press_get_hide_sidebar() ) : ?>
<div id="sidebar">
<?php if(pulse_press_get_option( 'show_voting' ) || pulse_press_get_option( 'show_unpopular' ) || pulse_press_get_option( 'show_most_voted_on' ) ): ?>
<ul>
<li>
<ul>
<?php if(pulse_press_get_option( 'show_voting' )): ?>
<li><a href="?popular"><?php pulse_press_display_option(pulse_press_get_option( 'popular_text'),"Popular"); ?></a></li>
<?php if(pulse_press_get_option( 'show_unpopular' )): ?>
<li><a href="?unpopular"><?php pulse_press_display_option(pulse_press_get_option( 'unpopular_text' ),"Unpopular"); ?></a></li>
<?php endif; ?>
<?php if(pulse_press_get_option( 'show_most_voted_on' )): ?>
<li><a href="?most-voted"><?php pulse_press_display_option(pulse_press_get_option( 'most_voted_on_text' ),"Most voted-on"); ?></a></li>
<?php endif; ?>
<?php
endif;
if(current_user_can( 'read' ) && pulse_press_get_option( 'show_fav' )): ?>
<li><a href="<?php echo home_url();?>/?starred" id="starred"><?php pulse_press_display_option(pulse_press_get_option( 'star_text' ) ,"My Starred"); ?></a></li>
<?php endif; ?>
</ul>
</li>
</ul>
<?php endif; ?>
<ul>
<?php
if ( !function_exists( 'dynamic_sidebar' ) || !dynamic_sidebar() ) {
the_widget( 'PulsePress_Recent_Comments', array(), array( 'before_widget' => '<li> ', 'after_widget' => '</li>', 'before_title' =>'<h2>', 'after_title' => '</h2>' ) );
the_widget( 'PulsePress_Recent_Tags', array(), array( 'before_widget' => '<li> ', 'after_widget' => '</li>', 'before_title' =>'<h2>', 'after_title' => '</h2>' ) );
}
?>
</ul>
<div class="clear"></div>
</div> <!-- // sidebar -->
<?php endif; ?>