Skip to content

Latest commit

 

History

History
36 lines (19 loc) · 1.13 KB

architecture.md

File metadata and controls

36 lines (19 loc) · 1.13 KB

Architecture

The Visual Framework WordPress theme uses a plugin-based architecture.

Pages in the VF-WP parent and child themes are built up using block and container plugins. Both types of plugin are represented as custom post types. These are registered by the core VF-WP plugin.

Each block or container plugin directory contains:

  • index.php
  • template.php
  • group_vf_[NAME].json (optional)

And any additional includes or assets needed.

VF-WP Plugin

VF-WP plugin documentation →

Blocks

Blocks are small, reusable content patterns based on the Visual Framework.

Blocks documentation →

Containers

Containers are large, single use template patterns based on the Visual Framework.

Containers documentation →

Templates

Templates are configurable container stacks that can be used to define preset dynamic theme templates.

Templates documentation →