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>