WordPress.org

Codex

Interested in functions, hooks, classes, or methods? Check out the new WordPress Code Reference!

Function Reference/get all page ids

Description

Get a list of page IDs.

Usage

<?php get_all_page_ids() ?>

Parameters

  • None

Return Values

(array) 
List of page IDs.

Examples

<?php
$page_ids=get_all_page_ids();
echo '<h3>My Page List :</h3>';
foreach($page_ids as $page)
{
	echo '<br />'.get_the_title($page);
}

 ?>

Notes

Change Log

Since: 2.0.0

Source File

get_all_page_ids() is located in wp-includes/post.php.

Related

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()

See also index of Function Reference and index of Template Tags.