Definition:
function get_all_page_ids() {}
Get a list of page IDs.
Return values
returns:List of page IDs.
Source code
function get_all_page_ids() {
global $wpdb;
if ( ! $page_ids = wp_cache_get('all_page_ids', 'posts') ) {
$page_ids = $wpdb->get_col("SELECT ID FROM $wpdb->posts WHERE post_type = 'page'");
wp_cache_add('all_page_ids', $page_ids, 'posts');
}
return $page_ids;
}
1138

February 11, 2011 


No comments yet... Be the first to leave a reply!