Created
November 19, 2018 19:47
-
-
Save itsdavidmorgan/29a124a936bbf9314c9d37434c0225cf to your computer and use it in GitHub Desktop.
Enqueue Gutenberg Editor Stylesheet
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
/** | |
* Enqueue WordPress theme styles within Gutenberg. | |
*/ | |
function organic_origin_gutenberg_styles() { | |
wp_enqueue_style( 'organic-origin-gutenberg', get_theme_file_uri( '/css/gutenberg.css' ), false, '1.0', 'all' ); | |
} | |
add_action( 'enqueue_block_editor_assets', 'organic_origin_gutenberg_styles' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Perfect! Still works in 2025 with WordPress 6.7.2, thanks!