Last active
March 26, 2021 04:56
-
-
Save Olein-jp/39db88bddc2a485ff3bc82d3d4f019b8 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 | |
/** | |
* オリジナルCSS読み込み | |
*/ | |
function od_enqueue_scripts() | |
{ | |
wp_enqueue_style('od_styles', plugins_url('style.css', __FILE__)); | |
} | |
add_action('wp_enqueue_scripts', 'od_enqueue_scripts'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment