Changes between Version 9 and Version 10 of Ticket #63086, comment 40
- Timestamp:
- 03/18/2025 09:10:42 PM (10 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #63086, comment 40
v9 v10 82 82 }}} 83 83 84 The `cache_add` is done too early. During the normal execution, cache_add is going to be executed at least one other time. But this first time makes the different enough, so Parent theme won't be set and hence, a blank screen will appear84 The `cache_add` is done too early. 85 85 86 86 By removing this fragment … … 124 124 }}} 125 125 126 Solves this report also, and as I say, $cache will be populated later because, as I see this fragment, was mostly designed for non-block themes. 126 Solves this report also, but cache should be populated after the parent call. 127 128 Maybe the solution is simply considering another check specific for block themes instead of asking devs for not using this function between 'muplugins_loaded' and 'plugins_loaded' (in a mu-plugin basically)