get_all_page_ids

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

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

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: