Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nextab/f309050cae4dcbfda84a5d56b82f6cc5 to your computer and use it in GitHub Desktop.

Select an option

Save nextab/f309050cae4dcbfda84a5d56b82f6cc5 to your computer and use it in GitHub Desktop.
/* Ggf. anschließend auch noch Permalinks neu abspeichern im WP Backend */
function nxt_clear_theme_json_cache() {
if (function_exists('wp_clean_theme_json_cache')) {
wp_clean_theme_json_cache();
}
delete_transient('global_styles');
delete_transient('global_styles_svg_filters');
wp_cache_flush();
}
add_action('after_switch_theme', 'nxt_clear_theme_json_cache');
add_action('wp_update_themes', 'nxt_clear_theme_json_cache');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment