Skip to content

Instantly share code, notes, and snippets.

@nuggetnchill
Last active December 31, 2020 16:01
Show Gist options
  • Save nuggetnchill/2cadb6cfa7b69781f332d4a5fab8293b to your computer and use it in GitHub Desktop.
Save nuggetnchill/2cadb6cfa7b69781f332d4a5fab8293b to your computer and use it in GitHub Desktop.
Wordpress CSS not updating (cache problem)

Having trouble with your WP Page CSS not updating? Give these steps a try!

Go to functions.php in Appearance/Theme Editor

Replace wp_enqueue_style('[your theme]');

With wp_enqueue_style('[your theme]', get_template_directory_uri() . '/css/main.css', array(), filemtime(get_template_directory() . '/css/main.css'), false);

Oh and...

Ctrl + F5

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment