Skip to content

Instantly share code, notes, and snippets.

@codyogden
Last active December 3, 2016 07:14
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 codyogden/ad128ab16eed19c3f6aca909fd4c22c2 to your computer and use it in GitHub Desktop.
Save codyogden/ad128ab16eed19c3f6aca909fd4c22c2 to your computer and use it in GitHub Desktop.
Add a stylesheet and/or Google Font to the WordPress admin editor.
<?php
// Register Editor Stylesheet
function text_domain_add_editor_styles() {
// Easily add a Google Font to the Editor
$font_url = str_replace( ',', '%2C', '//fonts.googleapis.com/css?family=Indie+Flower' );
add_editor_style( $font_url );
add_editor_style('editor-styles.css');
}
add_action('admin_init', 'text_domain_add_editor_styles');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment