File: D:/web/conferencesearch/wp-content/themes/beauty-premium/sidebar-default.php
<div class="widget">
<h3><?php _e( 'Search' ) ?></h3>
<?php get_search_form() ?>
</div>
<!-- START SIDEBAR -->
<div id="sidebar">
<?php get_sidebar( 'blog' ) ?>
</div>
<!-- END SIDEBAR -->
<div class="widget">
<h3><?php _e( 'Archives' ) ?></h3>
<ul>
<?php wp_get_archives('type=monthly&show_post_count=1'); ?>
</ul>
</div>
<div class="widget">
<h3><?php _e( 'Categories' ) ?></h3>
<ul>
<?php
$cat_params = Array(
'hide_empty' => FALSE,
'title_li' => ''
);
if( strlen( trim( get_option( $GLOBALS['shortname'] . '_blog_cats_exclude_2' ) ) ) > 0 ){
$cat_params['exclude'] = trim( get_option( $GLOBALS['shortname'] . '_blog_cats_exclude_2' ) );
}
wp_list_categories( $cat_params );
?>
</ul>
</div>