Skip to content

Instantly share code, notes, and snippets.

@midoriberlin
Last active August 29, 2015 14:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save midoriberlin/400a2c58d26ec1033817 to your computer and use it in GitHub Desktop.
Save midoriberlin/400a2c58d26ec1033817 to your computer and use it in GitHub Desktop.
Connecting the WordPress post editor to your custom stylesheet
// Connect the WordPress post editor to your custom stylesheet
function my_theme_add_editor_styles() {
add_editor_style( 'custom-editor-style.css' );
}
add_action( 'admin_init', 'my_theme_add_editor_styles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment