Created
December 25, 2025 14:38
-
-
Save nextab/f309050cae4dcbfda84a5d56b82f6cc5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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