HEX
Server:Apache
System:Linux localhost 5.10.0-14-amd64 #1 SMP Debian 5.10.113-1 (2022-04-29) x86_64
User:enlugo-es (10006)
PHP:7.4.33
Disabled:opcache_get_status
Upload Files
File: /var/www/vhosts/enlugo.es/httpdocs/wp-content/themes/rubine/sidebar-footer.php
<?php // Check if there are footer widgets
	if(is_active_sidebar('footer-left') 
		or is_active_sidebar('footer-center-left')
		or is_active_sidebar('footer-center-right')
		or is_active_sidebar('footer-right')) : 
?>
		
	<div id="footer-widgets-wrap" class="container">
	
		<div id="footer-widgets" class="clearfix">
		
			<div class="footer-widgets-left">
			
				<div class="footer-widget-column">
					<?php dynamic_sidebar('footer-left'); ?>
				</div>
				<div class="footer-widget-column">
					<?php dynamic_sidebar('footer-center-left'); ?>
				</div>
				
			</div>
			
			<div class="footer-widgets-left">				
				
				<div class="footer-widget-column">
					<?php dynamic_sidebar('footer-center-right'); ?>
				</div>
				<div class="footer-widget-column">
					<?php dynamic_sidebar('footer-right'); ?>
				</div>
				
			</div>
			
		</div>
		
	</div>
	
<?php endif; ?>