Using the following snippet, you will put page directly into your page template.
1 2 3 4 5 | <?php $id = 1; // page ID to display $p = get_page($id); echo apply_filters('the_content', $p->post_content); ?> |
Snippet Source/Credit: Snipplr
Using the following snippet, you will put page directly into your page template.
1 2 3 4 5 | <?php $id = 1; // page ID to display $p = get_page($id); echo apply_filters('the_content', $p->post_content); ?> |
Snippet Source/Credit: Snipplr