Skip to content

Instantly share code, notes, and snippets.

@ryanwelcher
Created April 29, 2022 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanwelcher/d3ef03fe018ca45562d989e638a03985 to your computer and use it in GitHub Desktop.
Save ryanwelcher/d3ef03fe018ca45562d989e638a03985 to your computer and use it in GitHub Desktop.
WordPress 6.0 Example: Webfonts API Registering a font from theme.json
"fontFamilies": [
{
"fontFamily": "-apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif",
"name": "System Font",
"slug": "system-font"
},
{
"fontFamily": "\"Source Serif Pero\", serif",
"name": "Source Serif Pero",
"slug": "source-serif-pero",
"fontFace": [
{
"fontFamily": "Source Serif Pero",
"fontWeight": "200 900",
"fontStyle": "normal",
"fontStretch": "normal",
"src": [ "file:./assets/fonts/SourceSerif4Variable-Roman.ttf.woff2" ]
},
{
"fontFamily": "Source Serif Pero",
"fontWeight": "200 900",
"fontStyle": "italic",
"fontStretch": "normal",
"src": [ "file:./assets/fonts/SourceSerif4Variable-Italic.ttf.woff2" ]
}
]
}
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment