blocks
7 years ago
build
6 years ago
fonts
8 years ago
genericons
6 years ago
images
6 years ago
jetpack-icons
6 years ago
lib
7 years ago
scss
6 years ago
social-logos
7 years ago
accessible-focus.js
8 years ago
class.jetpack-provision.php
7 years ago
facebook-embed.js
8 years ago
footer.php
7 years ago
gallery-settings.js
8 years ago
genericons.php
11 years ago
header.php
7 years ago
idc-notice.js
8 years ago
jetpack-admin.js
8 years ago
jetpack-connection-banner.js
7 years ago
jetpack-jitm.js
7 years ago
jetpack-modules.js
8 years ago
jetpack-modules.models.js
8 years ago
jetpack-modules.views.js
8 years ago
jetpack-server-sandbox.php
7 years ago
jetpack-strings.php
7 years ago
jquery.jetpack-resize.js
8 years ago
jquery.spin.js
8 years ago
postmessage.js
8 years ago
social-logos.php
9 years ago
spin.js
8 years ago
twitter-timeline.js
8 years ago
social-logos.php
15 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Globally registers the 'social-logos' style and font. |
| 4 | * |
| 5 | * This ensures any theme or plugin using it is on the latest version of Social Logos, and helps to avoid conflicts. |
| 6 | */ |
| 7 | add_action( 'init', 'jetpack_register_social_logos', 1 ); |
| 8 | function jetpack_register_social_logos() { |
| 9 | if ( ! wp_style_is( 'social-logos', 'registered' ) ) { |
| 10 | $post_fix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
| 11 | wp_register_style( 'social-logos', plugins_url( 'social-logos/social-logos' . $post_fix . '.css', __FILE__ ), false, '1' ); |
| 12 | } |
| 13 | } |
| 14 | |
| 15 |