2009-11-23 06:55:17 +00:00
|
|
|
<?php global $comicpress_options;
|
2009-11-23 06:47:53 +00:00
|
|
|
if (!$comicpress_options['disable_lrsidebars_frontpage']) { ?>
|
2009-08-21 17:45:23 +00:00
|
|
|
<div id="sidebar-right">
|
2009-11-02 12:23:41 +00:00
|
|
|
<div class="sidebar-head"></div>
|
2009-09-03 01:12:30 +00:00
|
|
|
<div class="sidebar">
|
2009-12-21 22:26:24 +00:00
|
|
|
<?php
|
|
|
|
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Right Sidebar') ) :
|
2009-12-21 23:18:40 +00:00
|
|
|
// the_widget('ComicpressBookmarkWidget','mode=three-button');
|
2009-12-21 22:26:24 +00:00
|
|
|
if (is_cp_theme_layout('standard,v')) {
|
2009-12-22 10:58:26 +00:00
|
|
|
the_widget('ComicPressCalendarWidget');
|
2009-12-22 02:16:29 +00:00
|
|
|
the_widget('ComicpressArchiveDropdownWidget','mode=monthly_archive');
|
2009-12-21 22:26:24 +00:00
|
|
|
}
|
2009-12-22 12:21:44 +00:00
|
|
|
the_widget('WP_Widget_Search');
|
2009-12-21 22:26:24 +00:00
|
|
|
the_widget('WP_Widget_Pages');
|
|
|
|
the_widget('WP_Widget_Categories','hierarchical=1&count=1');
|
|
|
|
|
|
|
|
endif;
|
|
|
|
?>
|
2009-09-03 01:12:30 +00:00
|
|
|
</div>
|
2009-11-02 12:23:41 +00:00
|
|
|
<div class="sidebar-foot"></div>
|
2009-08-25 12:37:13 +00:00
|
|
|
</div>
|
2009-11-06 02:56:36 +00:00
|
|
|
<?php } ?>
|