From 57aee3079aeba42f73cf2a9a81c5fdaa59c00e0b Mon Sep 17 00:00:00 2001 From: Dave Clements Date: Thu, 27 Aug 2015 09:44:08 -0400 Subject: [PATCH] Add missing slash for stylesheet enqueuing --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 5d116e7..8690bd6 100644 --- a/functions.php +++ b/functions.php @@ -12,7 +12,7 @@ function load_parent_theme_css() { function load_child_theme_css() { wp_enqueue_style( 'child-theme', - get_stylesheet_directory_uri() . 'css/style.css', + get_stylesheet_directory_uri() . '/css/style.css', array(), filemtime( get_stylesheet_directory() . '/css/style.css' ) );