Skip to content

Instantly share code, notes, and snippets.

@Olein-jp
Last active March 26, 2021 04:56
Show Gist options
  • Save Olein-jp/39db88bddc2a485ff3bc82d3d4f019b8 to your computer and use it in GitHub Desktop.
Save Olein-jp/39db88bddc2a485ff3bc82d3d4f019b8 to your computer and use it in GitHub Desktop.
My Snow Monkey にオリジナルCSSスタイルファイルを読み込み
<?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