Last active
December 22, 2018 19:11
-
-
Save richtabor/7000eb7503512c5b20dfd4c35322daa6 to your computer and use it in GitHub Desktop.
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
/** | |
* Sets up theme defaults and registers support for various WordPress features. | |
*/ | |
function tabor_setup() { | |
// Add support for editor styles. | |
add_theme_support( 'editor-styles' ); | |
// Enqueue editor styles. | |
add_editor_style( 'assets/css/style-editor.css' ); | |
} | |
add_action( 'after_setup_theme', 'tabor_setup' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment