Last active
January 5, 2016 13:25
-
-
Save jesseeproductions/5f3807998856cc5ed108 to your computer and use it in GitHub Desktop.
Coupon Creator - Add Google Fonts to Print View
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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