Skip to content

Instantly share code, notes, and snippets.

@yiichou
Last active August 29, 2015 14:12
Show Gist options
  • Save yiichou/9d791e2c0a1c703e0350 to your computer and use it in GitHub Desktop.
Save yiichou/9d791e2c0a1c703e0350 to your computer and use it in GitHub Desktop.
replace-google-fonts
<?php
/**
* Replace Google Fonts
* Use Qihoo 360 Open Fonts Service to replace Google's.
*
* @param $text
* @return mixed
*/
function ohMyFont($text)
{
return str_replace('//fonts.googleapis.com/', '//fonts.useso.com/', $text);
}
add_filter('style_loader_tag', 'ohMyFont', 1000, 1);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment