Created
April 28, 2023 14:36
-
-
Save aslamatwebdevstudios/4223c8d123886174972343f66f5c9f8c to your computer and use it in GitHub Desktop.
Enqueue block editor styles
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
<?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