Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save razorfrog/937305456d4961d846fac8ffbb99ed08 to your computer and use it in GitHub Desktop.
Save razorfrog/937305456d4961d846fac8ffbb99ed08 to your computer and use it in GitHub Desktop.
<?php
////////////////////////////////////////////////////////////
// deregister default punch fonts
////////////////////////////////////////////////////////////
add_action( 'wp_print_styles', 'rzf_deregister_punch', 100 );
function rzf_deregister_punch() {
wp_deregister_style( 'tp-open-sans' );
wp_deregister_style( 'tp-raleway' );
wp_deregister_style( 'tp-droid-serif' );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment