You've already forked wp-bootstrap
-
WP Bootstrap 1.0.9
Stablereleased this
2026-02-19 17:26:45 +00:00 | 10 commits to main since this releasePerformance
- Color variation CSS transient caching (
functions.php):wp_bootstrap_variation_colors()now caches the generated inline CSS in a 24-hour WordPress transient keyed bywp_bootstrap_variation_css_+ an MD5 of the active stylesheet slug. Previously the palette iteration and CSS string building ran on every frontend page load. The transient is immediately invalidated onswitch_themeandsave_post_wp_global_styles, so changes made via the Design Editor are reflected instantly. - Twig template recompilation gated behind
WP_DEBUG(inc/Twig/TwigService.php):auto_reloadin the TwigEnvironmentconstructor was hardcoded totrue, causing Twig to stat every compiled template file on every request to check for source changes. Changed toWP_DEBUGso template recompilation only occurs during development. In production (WP_DEBUG = false) compiled Twig templates are served from cache without filesystem mtime checks.
Downloads
- Color variation CSS transient caching (