HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/web/conferencesearch/wp-content/themes/beauty-premium/Copy of sidebar-default.php
                <div class="widget">            
                    <h3><?php _e( 'Search' ) ?></h3>
                    <?php get_search_form() ?>
                </div>
                
                <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>
                
                <div class="widget">
                    <h3><?php _e( 'Blogroll' ) ?></h3>
                    <ul>
                        <?php wp_list_bookmarks( 'title_li=&categorize=0' ) ?>
                    </ul>
                </div>