at path:
ROOT
/
wp-content
/
plugins
/
jetpack
/
_inc
/
social-logos.php
run:
R
W
Run
blocks
DIR
2026-04-17 06:07:55
R
W
Run
build
DIR
2026-04-17 06:07:56
R
W
Run
fonts
DIR
2026-04-17 06:07:53
R
W
Run
genericons
DIR
2026-04-17 06:07:56
R
W
Run
lib
DIR
2026-04-17 06:07:56
R
W
Run
accessible-focus.js
620 By
2026-04-17 06:07:55
R
W
Run
Delete
Rename
blogging-prompts.php
9.06 KB
2026-04-17 06:07:55
R
W
Run
Delete
Rename
class.jetpack-provision.php
9.56 KB
2026-04-17 06:07:56
R
W
Run
Delete
Rename
crowdsignal-shortcode.js
649 By
2026-04-17 06:07:56
R
W
Run
Delete
Rename
crowdsignal-survey.js
277 By
2026-04-17 06:07:56
R
W
Run
Delete
Rename
deprecate.js
2.26 KB
2026-04-17 06:07:56
R
W
Run
Delete
Rename
facebook-embed.js
1 KB
2026-04-17 06:07:56
R
W
Run
Delete
Rename
gallery-settings.js
1 KB
2026-04-17 06:07:56
R
W
Run
Delete
Rename
genericons.php
508 By
2026-04-17 06:07:56
R
W
Run
Delete
Rename
jetpack-admin.js
1.56 KB
2026-04-17 06:07:56
R
W
Run
Delete
Rename
jetpack-deactivate-dialog.js
2.9 KB
2026-04-17 06:07:56
R
W
Run
Delete
Rename
jetpack-modules.js
2.37 KB
2026-04-17 06:07:56
R
W
Run
Delete
Rename
jetpack-modules.models.js
2.15 KB
2026-04-17 06:07:56
R
W
Run
Delete
Rename
jetpack-modules.views.js
1.69 KB
2026-04-17 06:07:56
R
W
Run
Delete
Rename
polldaddy-shortcode.js
2.64 KB
2026-04-17 06:07:56
R
W
Run
Delete
Rename
site-switcher-endpoint.php
2.33 KB
2026-04-17 06:07:56
R
W
Run
Delete
Rename
site-switcher.js
7.61 KB
2026-04-17 06:07:56
R
W
Run
Delete
Rename
site-switcher.php
1.9 KB
2026-04-17 06:07:56
R
W
Run
Delete
Rename
social-logos.php
840 By
2026-04-17 06:07:56
R
W
Run
Delete
Rename
twitter-timeline.js
351 By
2026-04-17 06:07:56
R
W
Run
Delete
Rename
error_log
up
📄
social-logos.php
Save
<?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__ ) . 'build/social-logos/' ); define( 'JETPACK_SOCIAL_LOGOS_DIR', plugin_dir_path( __FILE__ ) . 'build/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' ) ) { wp_register_style( 'social-logos', JETPACK_SOCIAL_LOGOS_URL . 'social-logos.css', false, JETPACK__VERSION ); } }