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/footer.php
	
	<?php // Get Theme Options from Database
		$theme_options = rubine_theme_options();
	?>	

	<div id="footer-bg">
	
		<?php get_sidebar('footer'); ?>
	
		<div id="footer-wrap">
			
			<footer id="footer" class="container clearfix" role="contentinfo">
				
				<?php // Display Social Icons
				if ( isset($theme_options['footer_icons']) and $theme_options['footer_icons'] == true ) : ?>

					<div id="footer-social-icons" class="social-icons-wrap clearfix">
						<?php rubine_display_social_icons(); ?>
					</div>

				<?php endif; ?>
				
				
				<div id="footer-text">
			
				<?php // Display Footer Text
					
					// Get Theme Options from Database
					$theme_options = rubine_theme_options();

					if ( isset( $theme_options['footer_text'] ) and $theme_options['footer_text'] <> '' ) :
						
						echo do_shortcode(wp_kses_post($theme_options['footer_text']));
							
					endif; 
					
				?>
				
					<span class="credit-link"><?php rubine_credit_link(); ?></span>
			
				</div>
				
			</footer>
			
		</div>
		
	</div>
	
</div><!-- end #wrapper -->

<?php wp_footer(); ?>
</body>
</html>