diff --git a/functions.php b/functions.php index d65516f..c017444 100644 --- a/functions.php +++ b/functions.php @@ -2,7 +2,9 @@ // function file for mfwpt -// enque style.css -wp_enqueue_style( 'style', get_stylesheet_uri() ); +function mytheme_enqueue_style() { + wp_enqueue_style( 'style', get_stylesheet_uri() ); +} +add_action( 'wp_enqueue_scripts', 'mytheme_enqueue_style' ); ?> \ No newline at end of file