/ Published in: PHP
URL: http://scottnix.com/code/wordpress/thematic-snippets/
Example of loading Google Fonts in Wordpress through enqueue (http://www.google.com/webfonts)
Expand |
Embed | Plain Text
// load google fonts function snix_google_fonts(){ wp_enqueue_style( 'google-fonts', 'http://fonts.googleapis.com/css?family=PT+Sans:regular,bold' ); } add_action('wp_enqueue_scripts', 'snix_google_fonts');
You need to login to post a comment.
