HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/martyknows.com/wp-content/themes/clean-home/sidebar.php
<?php
/**
 * @package WordPress
 * @subpackage Clean Home
 */
?>
	<div id="sidebar">
	<?php do_action( 'before_sidebar' ); ?>
	<?php if ( !dynamic_sidebar( 'primary-widget-area' ) ) : ?>

		<div class="block">
			<h3><?php _e( 'Recent Posts', 'cleanhome' ); ?></h3>
				<?php query_posts( 'showposts=5' ); ?>
				<ul>
					<?php while ( have_posts() ) : the_post(); ?>
					<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
					<?php endwhile;?>
				</ul>
		</div>

		<div class="block">
			<h3><?php _e( 'Archives', 'cleanhome' ); ?></h3>
				<ul>
				<?php wp_get_archives( 'type=monthly' ); ?>
				</ul>
		</div>

		<div class="block">
			<h3><?php _e( 'Categories', 'cleanhome' ); ?></h3>
				<ul>
					<?php wp_list_categories( 'title_li=' ); ?>
				</ul>
		</div>

		<div class="block">
			<?php wp_list_bookmarks( 'title_before=<h3>&title_after=</h3>&category_before=&category_after=' ); ?>
		</div>

	<?php endif; ?>
	</div>