Last active
March 26, 2021 04:58
-
-
Save Olein-jp/1e88ca895a7ea0aabc439c0cbd593a92 to your computer and use it in GitHub Desktop.
My Snow Monkey にエディタースタイル用CSSファイルを読み込み
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 | |
/** | |
* Editor style | |
*/ | |
function oleindesign_editor_style_register() | |
{ | |
wp_enqueue_style('oleindesign-editor-style', plugins_url('editor-style.css', __FILE__)); | |
} | |
add_action('enqueue_block_editor_assets', 'oleindesign_editor_style_register'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment