From dfac47d5eb8bc891afc9b87838bfcd1b7700a1d4 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Fri, 7 Sep 2018 09:27:19 -0400 Subject: [PATCH] cache busting the theme style.css --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index cc35150..2fdec0e 100644 --- a/functions.php +++ b/functions.php @@ -175,7 +175,7 @@ function accesspress_parallax_scripts() { wp_enqueue_style( 'animate', get_template_directory_uri() . '/css/animate.css' ); wp_enqueue_style( 'slick', get_template_directory_uri() . '/css/slick.css' ); wp_enqueue_style('accesspress-parallax-woocommerce',get_template_directory_uri().'/woocommerce/ap-parallax-style.css'); - wp_enqueue_style( 'accesspress-parallax-style', get_stylesheet_uri() ); + wp_enqueue_style( 'accesspress-parallax-style', get_template_directory_uri() ."/style.css?v=1.0.3" ); wp_enqueue_style( 'accesspress-parallax-responsive', get_template_directory_uri() . '/css/responsive.css' ); if (of_get_option('enable_animation') == '1' && is_front_page()) : -- 2.17.1