Busting Browser Cache when updating stylesheet of WordPress website

If you are editing the child theme CSS then this line has nothing to do with that: wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’, [], THEME_VERSION, ‘all’); get_template_directory_uri always refers to the parent theme, get_stylesheet_directory_uri always refers to the active theme, in this case the child theme. Likewise these lines refer to the currently active theme, aka … Read more