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/theflexguys.com/baronconstruct/wp-content/themes/themorningafter/sidebar.php
<?php
/**
 * The template for displaying the sidebar.
 *
 * @package WordPress
 * @subpackage The Morning After
 */
?>
<div class="column primary-sidebar last">
	
	<?php if ( !dynamic_sidebar( 'primary-sidebar' ) ) : ?>
		
		<div class="widget widget_categories">
			<h3 class="mast"><?php _e( 'Categories', 'woothemes' ); ?></h3>
			<ul>
				<?php wp_list_categories( 'title_li=' ); ?>
			</ul>
		</div>
		
		<div class="widget widget_archive">
			<h3 class="mast"><?php _e( 'Archives', 'woothemes' ); ?></h3>
			<ul>
				<?php wp_get_archives( 'type=monthly' ); ?>
			</ul>
		</div>
		
		<div class="widget widget_links">
			<h3 class="mast"><?php _e( 'Blogroll', 'woothemes' ); ?></h3>
			<ul class="xoxox">
				<?php wp_list_bookmarks( array( 'title_li' => '', 'categorize' => 0 ) ); ?>
			</ul>
		</div>
		
		<div class="widget widget_meta">
			<h3 class="mast"><?php _e( 'Meta', 'woothemes' ); ?></h3>
			<ul>
				<?php wp_register(); ?>
				<li><?php wp_loginout(); ?></li>
				<?php wp_meta(); ?>
			</ul>
		</div>
	
	<?php endif; ?>

</div>