HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ns3133907 6.8.0-86-generic #87-Ubuntu SMP PREEMPT_DYNAMIC Mon Sep 22 18:03:36 UTC 2025 x86_64
User: cssnetorguk (1024)
PHP: 8.2.28
Disabled: NONE
Upload Files
File: /home/wedotrades.co.uk/public_html/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>