Skip to content

Instantly share code, notes, and snippets.

@raewrites
Created January 13, 2015 03:56
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 raewrites/162bb5a043651de2ddcf to your computer and use it in GitHub Desktop.
Save raewrites/162bb5a043651de2ddcf to your computer and use it in GitHub Desktop.
My Theme Add Editor Styles
<?php
function my_theme_add_editor_styles() {
$font_url = str_replace( ',', '%2C', '//fonts.googleapis.com/css?family=Lato:300,400,700' );
add_editor_style( $font_url );
}
add_action( 'after_setup_theme', 'my_theme_add_editor_styles' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment