WordPress函数文档get_all_page_ids()
获取所有页面的id 描述 译文 获取页面编号列表。 原文 Get a list of page IDs. 用法…
获取所有页面的id
描述
译文
获取页面编号列表。
原文
Get a list of page IDs.
用法
<?php get_all_page_ids() ?>
参数
- None
返回值
(array)
List of page IDs.
注意
- 使用到: $wpdb
历史
添加于 版本: 2.0.0
源文件
get_all_page_ids() 函数的代码位于 wp-includes/post.php
.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Get a list of page IDs.
*
* @since 2.0.0
*
* @global wpdb $wpdb WordPress database abstraction object.
*
* @return array List of page IDs.
*/
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;
}
|
相关
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()
- 原文:http://codex.wordpress.org/Function_Reference/get_all_page_ids
类别:WordPress函数文档、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!