Skip to content

Instantly share code, notes, and snippets.

@jesseeproductions
Last active January 5, 2016 13:25
Show Gist options
  • Save jesseeproductions/5f3807998856cc5ed108 to your computer and use it in GitHub Desktop.
Save jesseeproductions/5f3807998856cc5ed108 to your computer and use it in GitHub Desktop.
Coupon Creator - Add Google Fonts to Print View
/*
* Coupon Creator - Add Google Fonts to Print View
* Version 2.1.2
*/
add_action('coupon_print_meta', 'cctor_google_fonts_print_view' );
function cctor_google_fonts_print_view() {
echo "<link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>";
echo "<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment