Skip to content

Instantly share code, notes, and snippets.

@colourgarden
Created September 11, 2018 17:55
Show Gist options
  • Save colourgarden/fa80883b122877f4f5e2c991a890baf8 to your computer and use it in GitHub Desktop.
Save colourgarden/fa80883b122877f4f5e2c991a890baf8 to your computer and use it in GitHub Desktop.
Flynt custom post type
# theme/config/customPostTypes/location/config.json
{
"name": "location",
"label": "Locations",
"singular_label": "Location",
"description": "",
"public": true,
"show_ui": true,
"show_in_nav_menus": false,
"show_in_rest": false,
"labels": {
"menu_name": "Locations",
"all_items": "All Locations",
"add_new": "Add new Location"
}
}
# theme/config/templates/single-location.json
{
"name": "DocumentDefault",
"areas": {
"layout": [
{
"name": "LayoutLocation",
"areas": {
"mainHeader": [
{
"name": "NavigationMain",
"customData": {
"menuSlug": "navigation_main"
}
}
],
"pageComponents": [
{
"name": "ComponentLoaderFlexible",
"customData": {
"fieldGroup": "locationComponents"
}
}
]
}
}
]
}
}
# theme/templates/single-location.php
<?php
Flynt\echoHtmlFromConfigFile('single-location.json');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment