Skip to content

Instantly share code, notes, and snippets.

@raewrites
Created January 13, 2015 03:53
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/f6fcbfbb396032deb4a7 to your computer and use it in GitHub Desktop.
Save raewrites/f6fcbfbb396032deb4a7 to your computer and use it in GitHub Desktop.
Add Editor Style Function
<?php
function my_theme_add_editor_styles() {
add_editor_style( 'custom-editor-style.css' );
}
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