From 27de0373a3ce2cab013a39b641f7990b202b9d1c Mon Sep 17 00:00:00 2001 From: Jason Wohlford Date: Wed, 2 May 2012 20:46:55 -0500 Subject: [PATCH] Remove Wordpress version numbers from stylesheets. --- inc/roots-scripts.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/inc/roots-scripts.php b/inc/roots-scripts.php index 831f016..ab036c7 100644 --- a/inc/roots-scripts.php +++ b/inc/roots-scripts.php @@ -3,13 +3,13 @@ function roots_scripts() { // Not included by default since Bootstrap's reset supersedes h5bp's. Include if you aren't using Bootstrap. //wp_enqueue_style('roots_style', get_template_directory_uri() . '/css/style.css', false, null); - wp_enqueue_style('roots_bootstrap_style', get_template_directory_uri() . '/css/bootstrap.css'); + wp_enqueue_style('roots_bootstrap_style', get_template_directory_uri() . '/css/bootstrap.css', false, null); if (BOOTSTRAP_RESPONSIVE) { - wp_enqueue_style('roots_bootstrap_responsive_style', get_template_directory_uri() . '/css/bootstrap-responsive.css', array('roots_bootstrap_style')); + wp_enqueue_style('roots_bootstrap_responsive_style', get_template_directory_uri() . '/css/bootstrap-responsive.css', array('roots_bootstrap_style'), null); } - wp_enqueue_style('roots_app_style', get_template_directory_uri() . '/css/app.css', false); + wp_enqueue_style('roots_app_style', get_template_directory_uri() . '/css/app.css', false, null); if (is_child_theme()) { wp_enqueue_style('roots_child_style', get_stylesheet_uri());