Last active
August 29, 2015 14:01
-
-
Save nfourtythree/96c4ee61b287d48fc10f to your computer and use it in GitHub Desktop.
Craft json plugin
This file contains hidden or 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
// Template Tag | |
{{ entries | examplePlugin( | |
"id", | |
"title", | |
"category.title", | |
"myRelatedField.title", | |
"myRelatedField.customField", | |
"myRelatedField.itsRelatedField.title") | raw }} | |
// Returns | |
{ | |
{ | |
"id": 1, | |
"title": "Entry Title", | |
"category": [ | |
{ | |
"title": "Category Title" | |
} | |
], | |
"myRelatedField": [ | |
{ | |
"title": "Related Entry's Title", | |
"customField": "Custom Data", | |
"itsRelatedField": [ | |
{ | |
"title": "Related Related Title" | |
} | |
], | |
} | |
] | |
}, | |
{ | |
"id": 2, | |
"title": "Entry Title 2", | |
"category": [ | |
{ | |
"title": "Category Title 2" | |
} | |
], | |
"myRelatedField": [ | |
{ | |
"title": "Related Entry's Title 2", | |
"customField": "Custom Data 2", | |
"itsRelatedField": [ | |
{ | |
"title": "Related Related Title 2" | |
} | |
], | |
} | |
] | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment