block.json 510 B

1234567891011121314151617181920212223242526
  1. {
  2. "$schema": "https://schemas.wp.org/trunk/block.json",
  3. "apiVersion": 2,
  4. "name": "core/loginout",
  5. "title": "Login/out",
  6. "category": "theme",
  7. "description": "Show login & logout links.",
  8. "keywords": [ "login", "logout", "form" ],
  9. "textdomain": "default",
  10. "attributes": {
  11. "displayLoginAsForm": {
  12. "type": "boolean",
  13. "default": false
  14. },
  15. "redirectToCurrent": {
  16. "type": "boolean",
  17. "default": true
  18. }
  19. },
  20. "supports": {
  21. "className": true,
  22. "typography": {
  23. "fontSize": false
  24. }
  25. }
  26. }