Skip to content

Instantly share code, notes, and snippets.

@diwakergupta
Created July 8, 2010 01:55
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 diwakergupta/467550 to your computer and use it in GitHub Desktop.
Save diwakergupta/467550 to your computer and use it in GitHub Desktop.
add webfonts to thematic
<?php
function my_head_scripts($content) {
$content .= '<script type="text/javascript"' .
'src="http://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js">' .
'</script>' .
'<script type="text/javascript">' .
'WebFont.load({' .
' google: { families: ["Cardo", "Crimson Text", "Vollkorn"] }' .
'});' .
'</script>';
return $content;
}
add_filter('thematic_head_scripts', 'my_head_scripts');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment