| Server IP : 62.72.47.131 / Your IP : 216.73.217.34 Web Server : Apache/2.4.66 (Debian) System : Linux 975cdb959a49 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64 User : ( 501) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/themes/flatsome/template-parts/footer/ |
Upload File : |
<?php
/**
* Absolute footer.
*
* @package Flatsome\Templates
* @flatsome-version 3.19.9
*/
$align = 'small-text-center';
if ( get_theme_mod( 'footer_bottom_align', '' ) == 'center' ) {
$align = 'text-center';
}
ob_start();
do_action( 'flatsome_absolute_footer_secondary' );
$flatsome_absolute_footer_secondary = trim( ob_get_clean() );
$flatsome_footer_right_text = trim( get_theme_mod( 'footer_right_text', '' ) );
?>
<div class="absolute-footer <?php echo get_theme_mod( 'footer_bottom_text', 'dark' ); ?> medium-text-center <?php echo $align;?>">
<div class="container clearfix">
<?php if ( $flatsome_footer_right_text || $flatsome_absolute_footer_secondary ) : ?>
<div class="footer-secondary pull-right">
<?php if ( $flatsome_footer_right_text ) : ?>
<div class="footer-text inline-block small-block">
<?php echo do_shortcode($flatsome_footer_right_text); ?>
</div>
<?php endif; ?>
<?php echo $flatsome_absolute_footer_secondary; ?>
</div>
<?php endif; ?>
<div class="footer-primary pull-left">
<?php if ( has_nav_menu( 'footer' ) ) : ?>
<?php
wp_nav_menu( array(
'theme_location' => 'footer',
'menu_class' => 'links footer-nav uppercase',
'depth' => 1,
'fallback_cb' => false,
) );
?>
<?php endif; ?>
<div class="copyright-footer">
<?php echo do_shortcode( get_theme_mod( 'footer_left_text', 'Copyright [ux_current_year] © <strong>Flatsome Theme</strong>' ) ); ?>
</div>
<?php do_action( 'flatsome_absolute_footer_primary' ); ?>
</div>
</div>
</div>