Codex tools: Log in
Contents |
Retrieves page data given a page ID or page object.
Pages provide a way to have static content that will not affect things like articles or archives or any other blog entry features of WordPress. Its simply a way to turn a blog entry into static content.
<?php get_page( $page_id ) ?>
[ID] => (integer) [post_author] => (integer) [post_date] => (YYYY-MM-DD HH:MM:SS) [post_date_gmt] => (YYYY-MM-DD HH:MM:SS) [post_content] => (all post content is in here) [post_title] => (Post Title Here) [post_excerpt] => (Post Excerpt) [post_status] => (? | publish) [comment_status] => (? | closed) [ping_status] => (? | closed) [post_password] => (blank if not specified) [post_name] => (slug-is-here) [to_ping] => (?) [pinged] => (?) [post_modified] => (YYYY-MM-DD HH:MM:SS) [post_modified_gmt] => (YYYY-MM-DD HH:MM:SS) [post_content_filtered] => (?) [post_parent] => (integer) [guid] => (a unique identifier that is not necessarily the URL to the Page) [menu_order] => (integer) [post_type] => (? | page) [post_mime_type] => ()?) [comment_count] => (integer) [ancestors] => (object|array) [filter] => (? | raw)
If you need the URL to the Page, don't try and use the guid value. Use the_permalink or get_permalink instead.
If a page is not found, a null value is returned.
This example code can be used when you want to include the text of a specific page in a theme.
<?php
$page_id = 123; // 123 should be replaced with a specific Page's id from your site, which you can find by mousing over the link to edit that Page on the Manage Pages admin page. The id will be embedded in the query string of the URL, e.g. page.php?action=edit&post=123.
$page_data = get_page( $page_id ); // You must pass in a variable to the get_page function. If you pass in a value (e.g. get_page ( 123 ); ), WordPress will generate an error. By default, this will return an object.
echo '<h3>'. $page_data->post_title .'</h3>';// echo the title
echo apply_filters('the_content', $page_data->post_content); // echo the content and retain Wordpress filters such as paragraph tags.
Origin: http://wordpress.org/support/topic/get_pagepost-and-no-paragraphs-problem
?>
Since: 1.5.1
get_page() is located in
wp-includes/post.php.
Page Tags: get_all_page_ids(), get_ancestors(), get_page(), get_page_link(), get_page_by_path(), get_page_by_title(), get_page_children(), get_page_hierarchy(), get_page_uri(), get_pages(), is_page(), page_uri_index(), wp_list_pages(), wp_page_menu() get_post