Skip to content

Instantly share code, notes, and snippets.

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 aslamatwebdevstudios/4223c8d123886174972343f66f5c9f8c to your computer and use it in GitHub Desktop.
Save aslamatwebdevstudios/4223c8d123886174972343f66f5c9f8c to your computer and use it in GitHub Desktop.
Enqueue block editor styles
<?php
function my_enqueue_block_editor_assets() {
wp_enqueue_style(
'my-block-editor-styles',
get_theme_file_uri( 'block-editor-style.css' ),
array(),
filemtime( get_theme_file_path( 'block-editor-style.css' ) ),
'all'
);
}
add_action( 'enqueue_block_editor_assets', 'my_enqueue_block_editor_assets' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment