Skip to content

Latest commit

 

History

History
50 lines (29 loc) · 598 Bytes

File metadata and controls

50 lines (29 loc) · 598 Bytes

<page>

Node > Post > Page

This element is an alias of Post as a shorthand for inserting 'page' post-types.

Attributes

type : 'page'

Examples

Basic Usage:

<page>

    <title>Example Page</title>

    This is a simple page example.

</page>

Create child pages:

<page>
    <title>Parent Page</title>

    <page>

        <title 'Child Page 1' />

    </page>

    <page 'Child Page 2' />

</page>

Assigning a page template:

<page template=templates/contact.php >

    <title 'Contact Me' />

</page>