blocks
3 years ago
build
3 years ago
fonts
3 years ago
genericons
6 years ago
lib
3 years ago
social-logos
3 years ago
accessible-focus.js
6 years ago
blogging-prompts.php
3 years ago
class.jetpack-provision.php
3 years ago
connect-button.js
3 years ago
crowdsignal-shortcode.js
3 years ago
crowdsignal-survey.js
6 years ago
facebook-embed.js
4 years ago
gallery-settings.js
6 years ago
genericons.php
5 years ago
jetpack-admin.js
3 years ago
jetpack-connection-banner.js
3 years ago
jetpack-deactivate-dialog.js
6 years ago
jetpack-modules.js
3 years ago
jetpack-modules.models.js
3 years ago
jetpack-modules.views.js
3 years ago
jetpack-recommendations-banner.js
3 years ago
jetpack-server-sandbox.php
4 years ago
polldaddy-shortcode.js
3 years ago
social-logos.php
3 years ago
twitter-timeline.js
6 years ago
social-logos.php
32 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Social Logos |
| 4 | * Icon Font of the social logos we use on WordPress.com and in Jetpack |
| 5 | * |
| 6 | * Reference: https://github.com/Automattic/social-logos |
| 7 | * |
| 8 | * @package automattic/jetpack |
| 9 | */ |
| 10 | |
| 11 | define( 'JETPACK_SOCIAL_LOGOS_URL', plugin_dir_url( __FILE__ ) . 'social-logos/' ); |
| 12 | define( 'JETPACK_SOCIAL_LOGOS_DIR', plugin_dir_path( __FILE__ ) . 'social-logos/' ); |
| 13 | |
| 14 | /** |
| 15 | * Globally registers the 'social-logos' style and font. |
| 16 | * |
| 17 | * This ensures any theme or plugin using it is on the latest version of Social Logos, and helps to avoid conflicts. |
| 18 | */ |
| 19 | function jetpack_register_social_logos() { |
| 20 | if ( ! wp_style_is( 'social-logos', 'registered' ) ) { |
| 21 | /** This filter is documented in modules/sharedaddy/sharing.php */ |
| 22 | $post_fix = apply_filters( 'jetpack_should_use_minified_assets', true ) ? '.min' : ''; |
| 23 | wp_register_style( |
| 24 | 'social-logos', |
| 25 | JETPACK_SOCIAL_LOGOS_URL . 'social-logos' . $post_fix . '.css', |
| 26 | false, |
| 27 | JETPACK__VERSION |
| 28 | ); |
| 29 | } |
| 30 | } |
| 31 | add_action( 'init', 'jetpack_register_social_logos', 1 ); |
| 32 |