https://github.com/damir-sijakovic/dsijak_json_ui
Creates JSON list of menu, categories and posts with thumbnail urls.
https://github.com/damir-sijakovic/dsijak_json_ui
json wordpress-plugin
Last synced: 3 months ago
JSON representation
Creates JSON list of menu, categories and posts with thumbnail urls.
- Host: GitHub
- URL: https://github.com/damir-sijakovic/dsijak_json_ui
- Owner: damir-sijakovic
- License: mit
- Created: 2021-12-29T14:52:01.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-29T14:56:39.000Z (over 4 years ago)
- Last Synced: 2025-03-25T06:26:44.048Z (over 1 year ago)
- Topics: json, wordpress-plugin
- Language: PHP
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
DSIJAK JSON UI
====================
Creates JSON list of menu, categories and posts.
What can this do?
-----------------
* You can create post sliders, menus without mixing with PHP code.
* You can fetch this JSON file asynchronously. This way page will load faster.
How do I use this?
------------------
Activate plugin and click on 'Create JSON file' button.
Then you can fetch JSON from root route:
fetch('http://localhost:3000/dsijak-json-ui.json')
.then(response => response.json())
.then(data => console.log(data));
Have fun!
---------