Skip to content

Commit

Permalink
Add missing slash for stylesheet enqueuing
Browse files Browse the repository at this point in the history
  • Loading branch information
theukedge committed Aug 27, 2015
1 parent 626e423 commit 57aee30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' )
);
Expand Down

0 comments on commit 57aee30

Please sign in to comment.