social-logos.php 555 B

1234567891011121314
  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. }