![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/plugins/jetpack/_inc/ |
<?php /** * Globally registers the 'genericons' style and font. * * This ensures any theme or plugin using it is on the latest version of Genericons, and helps to avoid conflicts. * * @package automattic/jetpack */ add_action( 'init', 'jetpack_register_genericons', 1 ); /** * Registers Genericons if not already done so by other code. */ function jetpack_register_genericons() { if ( ! wp_style_is( 'genericons', 'registered' ) ) { wp_register_style( 'genericons', plugins_url( 'genericons/genericons/genericons.css', __FILE__ ), false, '3.1' ); } }