├── .gitignore ├── 1-general-flow.md ├── 2-front-end-request.md ├── README.md ├── a-constants-reference.md ├── assets └── images │ ├── frontend-flow.plantuml │ ├── frontend-flow.svg │ └── simplified-overview.svg ├── b-globals-reference.md └── c-pluggable-functionality-reference.md /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1-general-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-core-bootstrap/documentation/HEAD/1-general-flow.md -------------------------------------------------------------------------------- /2-front-end-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-core-bootstrap/documentation/HEAD/2-front-end-request.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-core-bootstrap/documentation/HEAD/README.md -------------------------------------------------------------------------------- /a-constants-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-core-bootstrap/documentation/HEAD/a-constants-reference.md -------------------------------------------------------------------------------- /assets/images/frontend-flow.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-core-bootstrap/documentation/HEAD/assets/images/frontend-flow.plantuml -------------------------------------------------------------------------------- /assets/images/frontend-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-core-bootstrap/documentation/HEAD/assets/images/frontend-flow.svg -------------------------------------------------------------------------------- /assets/images/simplified-overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-core-bootstrap/documentation/HEAD/assets/images/simplified-overview.svg -------------------------------------------------------------------------------- /b-globals-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-core-bootstrap/documentation/HEAD/b-globals-reference.md -------------------------------------------------------------------------------- /c-pluggable-functionality-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-core-bootstrap/documentation/HEAD/c-pluggable-functionality-reference.md --------------------------------------------------------------------------------