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/paperpunch/sidebar-footer.php
<?php
/**
 * @package WordPress
 * @subpackage Paperpunch
 */
?>
<?php
	// The footer widget area is triggered if any of these areas have widgets. If none of the sidebars have widgets, the footer will be empty.
	if ( !is_active_sidebar( 'footer-1' ) && !is_active_sidebar( 'footer-2' ) && !is_active_sidebar( 'footer-3' ) && !is_active_sidebar( 'footer-4' ) )
		return;
?>
<div id="footer" class="clear">
	<?php if ( is_active_sidebar( 'footer-1' ) ) : ?>
	<ul class="widget-container first">
		<?php dynamic_sidebar( 'footer-1' ); ?>
	</ul>
	<?php endif; ?>

	<?php if ( is_active_sidebar( 'footer-2' ) ) : ?>
	<ul class="widget-container">
		<?php dynamic_sidebar( 'footer-2' ); ?>
	</ul>
	<?php endif; ?>

	<?php if ( is_active_sidebar( 'footer-3' ) ) : ?>
	<ul class="widget-container">
		<?php dynamic_sidebar( 'footer-3' ); ?>
	</ul>
	<?php endif; ?>

	<?php if ( is_active_sidebar( 'footer-4' ) ) : ?>
	<ul class="widget-container">
		<?php dynamic_sidebar( 'footer-4' ); ?>
	</ul>
	<?php endif; ?>
</div><!--end footer-->