wpcom.php 525 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * WordPress.com-specific functions and definitions.
  4. *
  5. * This file is centrally included from `wp-content/mu-plugins/wpcom-theme-compat.php`.
  6. *
  7. * @package Blockbase
  8. */
  9. /**
  10. * Enqueue our WP.com styles for front-end.
  11. * Loads after theme styles so we can add overrides.
  12. */
  13. function blockbase_wpcom_scripts() {
  14. wp_enqueue_style( 'blockbase-wpcom-style', get_template_directory_uri() . '/inc/wpcom-style.css', array( 'blockbase-ponyfill' ) );
  15. }
  16. add_action( 'wp_enqueue_scripts', 'blockbase_wpcom_scripts' );