| Server IP : 51.91.236.255 / Your IP : 216.73.216.180 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/inc/functions/helpers/ |
Upload File : |
<?php
/**
* Check the theme compatibility with async assets loading
* mode and if it's actually enabled
*
* @return bool
*/
if ( ! function_exists( 'arts_is_async_assets_loading_enabled' ) ) {
function arts_is_async_assets_loading_enabled() {
return true;
// Deprecated since 2.4.0
// return defined( 'ARTS_RHYE_CORE_PLUGIN_VERSION' ) && version_compare( ARTS_RHYE_CORE_PLUGIN_VERSION, '2.0.0', '>=' ) && get_theme_mod( 'assets_loading_mode', 'async' ) === 'async';
}
}