-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from michaelclaesson/patch-1
Fix bug where function didn't return post data and better ACF structure
- Loading branch information
Showing
9 changed files
with
380 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
[{ | ||
"key": "group_57da9a06e21a8", | ||
"title": "Noticeboard", | ||
"fields": [ | ||
{ | ||
"key": "field_57db72b205060", | ||
"label": "Introductory text", | ||
"name": "introductory_text", | ||
"aria-label": "", | ||
"type": "wysiwyg", | ||
"instructions": "", | ||
"required": 0, | ||
"conditional_logic": 0, | ||
"wrapper": { | ||
"width": "", | ||
"class": "", | ||
"id": "" | ||
}, | ||
"default_value": "", | ||
"tabs": "all", | ||
"toolbar": "full", | ||
"media_upload": 0, | ||
"delay": 0 | ||
}, | ||
{ | ||
"key": "field_57da9ced957d4", | ||
"label": "Filter by term", | ||
"name": "filter_posts_by_tag", | ||
"aria-label": "", | ||
"type": "taxonomy", | ||
"instructions": "", | ||
"required": 1, | ||
"conditional_logic": 0, | ||
"wrapper": { | ||
"width": "", | ||
"class": "", | ||
"id": "" | ||
}, | ||
"taxonomy": "announcement_type", | ||
"field_type": "radio", | ||
"allow_null": 0, | ||
"add_term": 1, | ||
"save_terms": 0, | ||
"load_terms": 0, | ||
"return_format": "id", | ||
"multiple": 0, | ||
"bidirectional_target": [] | ||
} | ||
], | ||
"location": [ | ||
[ | ||
{ | ||
"param": "post_type", | ||
"operator": "==", | ||
"value": "mod-noticeboard" | ||
} | ||
], | ||
[ | ||
{ | ||
"param": "block", | ||
"operator": "==", | ||
"value": "acf\/noticeboard" | ||
} | ||
] | ||
], | ||
"menu_order": 0, | ||
"position": "normal", | ||
"style": "default", | ||
"label_placement": "top", | ||
"instruction_placement": "label", | ||
"hide_on_screen": "", | ||
"active": true, | ||
"description": "", | ||
"show_in_rest": 0, | ||
"acfe_display_title": "", | ||
"acfe_autosync": [ | ||
"json" | ||
], | ||
"acfe_form": 0, | ||
"acfe_meta": "", | ||
"acfe_note": "" | ||
}] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
[{ | ||
"key": "group_57db7edf10454", | ||
"title": "Announcement", | ||
"fields": [ | ||
{ | ||
"key": "field_57db7f09b2a53", | ||
"label": "Link", | ||
"name": "link", | ||
"aria-label": "", | ||
"type": "url", | ||
"instructions": "Link to a file", | ||
"required": 0, | ||
"conditional_logic": 0, | ||
"wrapper": { | ||
"width": "", | ||
"class": "", | ||
"id": "" | ||
}, | ||
"default_value": "", | ||
"placeholder": "" | ||
}, | ||
{ | ||
"key": "field_57db7f7cb2a54", | ||
"label": "Meeting date", | ||
"name": "meeting_date", | ||
"aria-label": "", | ||
"type": "date_picker", | ||
"instructions": "", | ||
"required": 0, | ||
"conditional_logic": 0, | ||
"wrapper": { | ||
"width": "", | ||
"class": "", | ||
"id": "" | ||
}, | ||
"display_format": "d\/m\/Y", | ||
"return_format": "d\/m\/Y", | ||
"first_day": 1 | ||
}, | ||
{ | ||
"key": "field_58bfb86c760e3", | ||
"label": "Announcement type", | ||
"name": "announcement_type", | ||
"aria-label": "", | ||
"type": "taxonomy", | ||
"instructions": "", | ||
"required": 1, | ||
"conditional_logic": 0, | ||
"wrapper": { | ||
"width": "", | ||
"class": "", | ||
"id": "" | ||
}, | ||
"taxonomy": "announcement_type", | ||
"add_term": 1, | ||
"save_terms": 1, | ||
"load_terms": 1, | ||
"return_format": "id", | ||
"field_type": "radio", | ||
"allow_null": 0, | ||
"acfe_bidirectional": { | ||
"acfe_bidirectional_enabled": "0" | ||
}, | ||
"bidirectional": 0, | ||
"multiple": 0, | ||
"bidirectional_target": [] | ||
} | ||
], | ||
"location": [ | ||
[ | ||
{ | ||
"param": "post_type", | ||
"operator": "==", | ||
"value": "announcement" | ||
} | ||
] | ||
], | ||
"menu_order": 0, | ||
"position": "normal", | ||
"style": "default", | ||
"label_placement": "top", | ||
"instruction_placement": "label", | ||
"hide_on_screen": "", | ||
"active": true, | ||
"description": "", | ||
"show_in_rest": 0, | ||
"acfe_display_title": "", | ||
"acfe_autosync": [ | ||
"json" | ||
], | ||
"acfe_form": 0, | ||
"acfe_meta": "", | ||
"acfe_note": "" | ||
}] | ||
|
Oops, something went wrong.