HEX
Server: Apache
System: Linux pdx1-shared-a1-31 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: dh_5jabqq (6436002)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /home/dh_5jabqq/bermudashipwreckarchive.com/wp-content/themes/accelerate/sidebar-footer.php
<?php
/**
 * The Sidebar containing the footer widget areas.
 *
 * @package ThemeGrill
 * @subpackage Accelerate
 * @since Accelerate 1.0
 */

/**
 * The footer widget area is triggered if any of the areas
 * have widgets. So let's check that first.
 *
 * If none of the sidebars have widgets, then let's bail early.
 */
if( !is_active_sidebar( 'accelerate_footer_sidebar_one' ) &&
	!is_active_sidebar( 'accelerate_footer_sidebar_two' ) &&
	!is_active_sidebar( 'accelerate_footer_sidebar_three' ) ) {
	return;
}
?>
<div class="footer-widgets-wrapper">
	<div class="inner-wrap">
		<div class="footer-widgets-area clearfix">
			<div class="tg-one-third">
				<?php
				if ( !dynamic_sidebar( 'accelerate_footer_sidebar_one' ) ):
				endif;
				?>
			</div>
			<div class="tg-one-third">
				<?php
				if ( !dynamic_sidebar( 'accelerate_footer_sidebar_two' ) ):
				endif;
				?>
			</div>
			<div class="tg-one-third tg-one-third-last">
				<?php
				if ( !dynamic_sidebar( 'accelerate_footer_sidebar_three' ) ):
				endif;
				?>
			</div>
		</div>
	</div>
</div>