-
Notifications
You must be signed in to change notification settings - Fork 0
Update naar WordPress 6.1
Wybe van den Bosch edited this page Jun 3, 2026
·
1 revision
- Update WordPress naar
6.1.*
composer require johnpbloch/wordpress "6.1.*" johnpbloch/wordpress-core "6.1.*"
- Check of het project een
blocks.jsheeft. Zo ja, verwijder deze twee blocks uit deunusedCoreBlocks:
core/comments-query-loop
core/post-comments
- En voeg deze toe aan de
unusedCoreBlocks:
'core/comments',
- Check of het project een
theme.jsonheeft. Zo ja, voeg het volgendestylesobject toe na hetsettingsobject
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 2,
"settings": {
...
},
"styles": {
"elements": {
"button": {
"typography": {
"fontSize": "",
"fontFamily": "",
"lineHeight": "",
"textDecoration": ""
},
"color": {
"text": "",
"background": ""
},
"border": {
"width": ""
},
"spacing": {
"padding": {}
}
}
}
}
}
Gutenberg heeft default button CSS geïntroduceerd in de editor. Deze CSS is specifieker en overschrijft onze
/button/shared.scss. Door lege waardes mee te geven aan detheme.json, wordt deze default CSS niet gegenereerd.