wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_page › WordPress Function

Seit1.5.1
Veraltet3.5.0
get_page ( $page, $output = OBJECT, $filter = 'raw' )
Parameter: (3)
  • (int|WP_Post) $page Page object or page ID. Passed by reference.
    Erforderlich: Ja
  • (string) $output 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 OBJECT.
    Erforderlich: Nein
    Standard: OBJECT
  • (string) $filter Optional. How the return value should be filtered. Accepts 'raw', 'edit', 'db', 'display'. Default 'raw'.
    Erforderlich: Nein
    Standard: 'raw'
Gibt zurück:
  • (WP_Post|array|null) WP_Post or array on success, null on failure.
Definiert in:
Codex:

Retrieves page data given a page ID or page object.

Use get_post() instead of get_page().


Quellcode

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