test css loading
テストで作ったやつ
// Register Style
function custom_styles() {
wp_register_style( 'orijinal', '/css/hoge.css', false, false );
wp_enqueue_style( 'orijinal' );
}
// Hook into the 'wp_enqueue_scripts' action
add_action( 'wp_enqueue_scripts', 'custom_styles' );