Last active
December 3, 2016 07:14
-
-
Save codyogden/ad128ab16eed19c3f6aca909fd4c22c2 to your computer and use it in GitHub Desktop.
Add a stylesheet and/or Google Font to the WordPress admin editor.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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