Skip to content

Frontend

Pedro de Carvalho edited this page Jul 29, 2026 · 1 revision

Frontend Rendering (Coming Soon)

Note: Frontend rendering (shortcodes and templates) is planned for Phase 5C of the Saltus Framework roadmap. This page will be updated when the feature is available.

Planned Features

  • Auto-register shortcodes for CPT content display
  • Configurable list and single view templates
  • Meta field exposure in frontend templates
  • Template override system (config → theme → default)

Planned Shortcode API

[saltus_cpt type="movie" view="list" limit="10" orderby="date" order="desc"]
[saltus_cpt type="movie" view="single" id="123"]

Planned Config Shape

frontend:
  shortcode: true
  shortcode_alias: 'movies'
  templates:
    list: 'plugin/templates/list.php'
    single: 'plugin/templates/single.php'

Check the Saltus Framework documentation site for updates.

Clone this wiki locally