Skip to content

Instantly share code, notes, and snippets.

@andykeith
Last active February 4, 2019 16:45
Show Gist options
  • Save andykeith/b80c5fe4615229756839fe5d8af03cdb to your computer and use it in GitHub Desktop.
Save andykeith/b80c5fe4615229756839fe5d8af03cdb to your computer and use it in GitHub Desktop.
Preload icon font used in WooCommerce Product Table
<?php
add_action( 'wp_head', function() {
if ( class_exists( 'WC_Product_Table_Plugin' ) ) {
echo '<link rel="preload" href="' . plugins_url( 'assets/fonts/fa-solid-900.woff2', WC_Product_Table_Plugin::FILE ) . '" as="font" type="font/woff2" crossorigin="anonymous">' . "\n";
}
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment