Cody allows 3 kinds of WordPress like “extentions”
- adding views: creating *.ejs files, coupling them to a template and your set.
you can embed JavaScript code and change the layout as much as you want.
- adding content types: if you have data that you want to be rendered
in a very specific way or do pre-processing on it.
- adding your own controller and view: the most flexible way.
you decide what is fetched from the database (in the controller),
you can add actions (handle form submit, url’s, buttons, …)
and you can provide your own view templates.
Johan