| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/HostingSpaces/admin/aifortoday.co.uk/wwwroot/wp-content/plugins/jetpack/_inc/ |
Upload File : |
<?php
/**
* Social Logos
* Icon Font of the social logos we use on WordPress.com and in Jetpack
*
* Reference: https://github.com/Automattic/social-logos
*
* @package automattic/jetpack
*/
define( 'JETPACK_SOCIAL_LOGOS_URL', plugin_dir_url( __FILE__ ) . 'social-logos/' );
define( 'JETPACK_SOCIAL_LOGOS_DIR', plugin_dir_path( __FILE__ ) . 'social-logos/' );
/**
* Globally registers the 'social-logos' style and font.
*
* This ensures any theme or plugin using it is on the latest version of Social Logos, and helps to avoid conflicts.
*/
function jetpack_register_social_logos() {
if ( ! wp_style_is( 'social-logos', 'registered' ) ) {
/** This filter is documented in modules/sharedaddy/sharing.php */
$post_fix = apply_filters( 'jetpack_should_use_minified_assets', true ) ? '.min' : '';
wp_register_style(
'social-logos',
JETPACK_SOCIAL_LOGOS_URL . 'social-logos' . $post_fix . '.css',
false,
JETPACK__VERSION
);
}
}