Created
August 2, 2016 11:50
-
-
Save jimmy89Li/d6382bbd19ec603738297077d056958c to your computer and use it in GitHub Desktop.
Custom Font on Editor View
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
@import url(//fonts.googleapis.com/css?family=Open+Sans); | |
body {font-family: 'Open Sans', sans-serif; font-size:1em; line-height:1.5em;} |
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
// Load custom CSS for editor view | |
function my_theme_add_editor_styles() { | |
add_editor_style( 'css/custom-editor-style.css' ); | |
} | |
add_action( 'init', 'my_theme_add_editor_styles' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment