wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



get_all_page_ids › WordPress Function

Depuis2.0.0
Dépréciéen/a
get_all_page_ids ( Pas de paramètres )
Retourne:
  • (string[]) List of page IDs as strings.
Défini(e) dans:
Codex:

Gets a list of page IDs.



Source

function get_all_page_ids() {
	global $wpdb;

	$page_ids = wp_cache_get( 'all_page_ids', 'posts' );
	if ( ! is_array( $page_ids ) ) {
		$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;
}