diff --git a/inc/roots-actions.php b/inc/roots-actions.php index be74f86..145d2a6 100644 --- a/inc/roots-actions.php +++ b/inc/roots-actions.php @@ -8,6 +8,17 @@ function roots_get_stylesheets() { $styles = ''; + if (class_exists('RGForms')) { + $styles .= "\t\n"; + } + + if (is_child_theme()) { + $styles .= stylesheet_link_tag('/style.css', 1); + $styles .= "\t\n"; + } else { + $styles .= stylesheet_link_tag('/style.css', 1); + } + switch ($roots_css_framework) { case 'blueprint' : $styles .= stylesheet_link_tag('/blueprint/screen.css'); @@ -54,17 +65,6 @@ function roots_get_stylesheets() { break; } - if (class_exists('RGForms')) { - $styles .= "\t\n"; - } - - if (is_child_theme()) { - $styles .= stylesheet_link_tag('/style.css', 1); - $styles .= "\t\n"; - } else { - $styles .= stylesheet_link_tag('/style.css', 1); - } - switch ($roots_css_framework) { case 'blueprint' : $styles .= "\t\n";