| Server IP : 81.2.241.106 / Your IP : 216.73.216.165 Web Server : Apache/2.4.67 (Debian) System : Linux tranq-f.bakta.org 5.10.0-45-amd64 #1 SMP Debian 5.10.259-1 (2026-07-02) x86_64 User : lisky ( 1002) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/lisky/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
*/
if ( ! defined( 'ABSPATH' ) ) {
exit( 0 );
}
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
);
}
}