| 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
/**
* Back to top.
*
* @package Flatsome\Templates
* @flatsome-version 3.20.0
*/
$classes = [ 'back-to-top', 'button', 'icon', 'invert', 'plain', 'fixed', 'bottom', 'z-1', 'is-outline' ];
$shape = get_theme_mod( 'back_to_top_shape', 'circle' );
$classes[] = $shape === 'circle' ? 'circle' : 'round';
if ( get_theme_mod( 'back_to_top_position' ) === 'left' ) {
$classes[] = 'left';
}
if ( ! get_theme_mod( 'back_to_top_mobile' ) ) {
$classes[] = 'hide-for-medium';
}
printf( '<button type="button" %s>%s</button>',
flatsome_html_atts( [
'id' => 'top-link',
'class' => $classes,
'aria-label' => esc_attr__( 'Go to top', 'flatsome' ),
] ),
get_flatsome_icon( 'icon-angle-up' )
);