Skip to content

Instantly share code, notes, and snippets.

@Olein-jp
Last active March 26, 2021 04:58
Show Gist options
  • Save Olein-jp/1e88ca895a7ea0aabc439c0cbd593a92 to your computer and use it in GitHub Desktop.
Save Olein-jp/1e88ca895a7ea0aabc439c0cbd593a92 to your computer and use it in GitHub Desktop.
My Snow Monkey にエディタースタイル用CSSファイルを読み込み
<?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