| Server IP : 51.91.236.255 / Your IP : 216.73.217.120 Web Server : Apache System : Linux webm002.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : laureet ( 1012854) PHP Version : 8.0.30 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/laureet/www/wp-content/themes/rhye/template-parts/spinner/ |
Upload File : |
<?php
$ajax_spinner_desktop_enabled = get_theme_mod( 'ajax_spinner_desktop_enabled', false );
$ajax_spinner_mobile_enabled = get_theme_mod( 'ajax_spinner_mobile_enabled', true );
$class_spinner = '';
if ( $ajax_spinner_desktop_enabled ) {
$class_spinner .= ' d-lg-block';
} else {
$class_spinner .= ' d-lg-none';
}
if ( $ajax_spinner_mobile_enabled ) {
$class_spinner .= ' d-block';
} else {
$class_spinner .= ' d-none';
}
?>
<svg class="spinner <?php echo esc_attr( trim( $class_spinner ) ); ?>" id="js-spinner" width="65px" height="65px" viewBox="0 0 66 66" xmlns="http://www.w3.org/2000/svg">
<circle class="spinner__path" fill="none" stroke-width="6" stroke-linecap="round" cx="33" cy="33" r="30"></circle>
</svg>