HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/ERijn/knijft.eu/wwwroot/wp-content/themes/diverso/sidebar-default.php
		<?php if ( ! dynamic_sidebar( 'Default Sidebar' ) ) : ?>	
            
            <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( yiw_get_option( 'blog_cats_exclude_2' ) ) ) > 0 ){
            				$cat_params['exclude'] = trim( yiw_get_option( '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>
        
        <?php endif; ?>