Skip to content

Instantly share code, notes, and snippets.

@aliciaduffy
Last active October 8, 2015 17:08
Show Gist options
  • Save aliciaduffy/3362628 to your computer and use it in GitHub Desktop.
Save aliciaduffy/3362628 to your computer and use it in GitHub Desktop.
WordPress / GoogleFonts API
<?php
add_action('wp_print_styles', 'load_fonts');
function load_fonts() {
wp_register_style('googleFonts', 'http://fonts.googleapis.com/css?family=Oswald:700http://<?php echo $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"]; ?>');
wp_enqueue_style( 'googleFonts');
}
//goes in theme/front-end.php
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment