You've already forked wp-bootstrap
-
WP Bootstrap 1.0.10
Stablereleased this
2026-02-25 19:20:36 +00:00 | 8 commits to main since this releaseFixed
- Title double-encoding in Twig templates (
inc/Template/ContextBuilder.php): WordPress'sget_the_title()pre-encodes&as&. When passed to Twig with autoescape enabled, the&in&was escaped again to&, rendering as literal&in the browser (e.g. "Bewerbungen & Nachrichten" instead of "Bewerbungen & Nachrichten"). Fixed by wrapping all 6get_the_title()calls withwp_specialchars_decode()to decode WordPress entities before Twig. Twig autoescape then properly re-encodes&→&. This is XSS-safe because Twig still escapes all output.
Downloads
- Title double-encoding in Twig templates (