mirror of
https://github.com/WordPress/WordPress.git
synced 2025-03-09 07:00:01 +00:00
Caching typo.
git-svn-id: http://svn.automattic.com/wordpress/trunk@3490 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a191df007e
commit
dd14d47290
@ -814,7 +814,7 @@ function get_all_category_ids() {
|
|||||||
function get_all_page_ids() {
|
function get_all_page_ids() {
|
||||||
global $wpdb;
|
global $wpdb;
|
||||||
|
|
||||||
if ( ! $page_ids = wp_cache_get('all_page_ids', 'posts') ) {
|
if ( ! $page_ids = wp_cache_get('all_page_ids', 'pages') ) {
|
||||||
$page_ids = $wpdb->get_col("SELECT ID FROM $wpdb->posts WHERE post_status='static'");
|
$page_ids = $wpdb->get_col("SELECT ID FROM $wpdb->posts WHERE post_status='static'");
|
||||||
wp_cache_add('all_page_ids', $page_ids, 'pages');
|
wp_cache_add('all_page_ids', $page_ids, 'pages');
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user