Skip to content

Instantly share code, notes, and snippets.

@mharis
Last active November 14, 2018 18:45
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 mharis/495eecf163d279839fdf41a05f6f3f44 to your computer and use it in GitHub Desktop.
Save mharis/495eecf163d279839fdf41a05f6f3f44 to your computer and use it in GitHub Desktop.
<?php
/**
* Enqueue Gutenberg scripts and styles to backend area.
*/
function wds_gutenberg_assets() {
wp_enqueue_style( 'wds-gutenberg-admin', get_stylesheet_directory_uri() . '/gutenberg.css', array(), '1.0.0' );
}
add_action( 'enqueue_block_assets', 'wds_gutenberg_assets' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment