????JFIF??x?x????'
Server IP : 104.21.80.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/./oaa-foundation.org/wp-content/themes/yith-wonder/inc/ |
Upload File : |
<?php /** * Backward compatibility resources * * @package yith-wonder * @since 1.3.2 */ /** * Add backwards compatibility resources * * @since 1.2.0 * * @return void */ function yith_wonder_add_backwards_compatibility_resources() { $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; wp_register_style( 'yith-wonder-backwards-compatibility', get_theme_file_uri( 'assets/css/backwards-compatibility' . $suffix . '.css' ), array(), YITH_WONDER_VERSION ); wp_enqueue_style( 'yith-wonder-backwards-compatibility' ); } add_action( 'wp_enqueue_scripts', 'yith_wonder_add_backwards_compatibility_resources', 0 );