Skip to content

Instantly share code, notes, and snippets.

@itsdavidmorgan
Created November 19, 2018 19:47
Show Gist options
  • Save itsdavidmorgan/29a124a936bbf9314c9d37434c0225cf to your computer and use it in GitHub Desktop.
Save itsdavidmorgan/29a124a936bbf9314c9d37434c0225cf to your computer and use it in GitHub Desktop.
Enqueue Gutenberg Editor Stylesheet
/**
* 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' );
@DuncanJP
Copy link

DuncanJP commented Mar 1, 2025

Perfect! Still works in 2025 with WordPress 6.7.2, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment