Warning: This function has been deprecated. Use get_post() instead.

get_page( mixed $page, string $output = OBJECT, string $filter = 'raw' )

Retrieves page data given a page ID or page object.


Description Description

Use get_post() instead of get_page().


Parameters Parameters

$page

(mixed) (Required) Page object or page ID. Passed by reference.

$output

(string) (Optional) The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which correspond to a WP_Post object, an associative array, or a numeric array, respectively.

Default value: OBJECT

$filter

(string) (Optional) How the return value should be filtered. Accepts 'raw', 'edit', 'db', 'display'.

Default value: 'raw'


Top ↑

Return Return

(WP_Post|array|null) WP_Post (or array) on success, or null on failure.


Top ↑

Source Source

File: wp-includes/post.php

function get_page( $page, $output = OBJECT, $filter = 'raw' ) {
	return get_post( $page, $output, $filter );
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.5.0 Use get_post()
1.5.1 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

  1. Skip to note 1 content
    Contributed by thomasmaier

    Add the content of a page anywhere with separated title.

    $id = 0; // add the ID of the page where the zero is
    $p = get_page($id);
    $t = $p->post_title;
    echo '<h3>'.apply_filters('post_title', $t).'</h3>'; // the title is here wrapped with h3
    echo apply_filters('the_content', $p->post_content);

You must log in before being able to contribute a note or feedback.