Optimiation from Denis
git-svn-id: http://svn.automattic.com/wordpress/trunk@2550 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0d878895e4
commit
74b400f3d3
|
@ -1189,11 +1189,9 @@ function update_post_caches(&$posts) {
|
||||||
|
|
||||||
function update_category_cache() {
|
function update_category_cache() {
|
||||||
global $cache_categories, $wpdb;
|
global $cache_categories, $wpdb;
|
||||||
$dogs = $wpdb->get_results("SELECT * FROM $wpdb->categories");
|
$dogs = $wpdb->get_results("SELECT *, cat_ID as category_id FROM $wpdb->categories");
|
||||||
foreach ($dogs as $catt) {
|
foreach ($dogs as $catt)
|
||||||
$catt->category_id = $catt->cat_ID; // Alias.
|
|
||||||
$cache_categories[$catt->cat_ID] = $catt;
|
$cache_categories[$catt->cat_ID] = $catt;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function update_user_cache() {
|
function update_user_cache() {
|
||||||
|
|
Loading…
Reference in New Issue