Optimiation from Denis
git-svn-id: https://develop.svn.wordpress.org/trunk@2550 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
4ea0b88e54
commit
d7c18937a1
|
@ -1189,12 +1189,10 @@ function update_post_caches(&$posts) {
|
|||
|
||||
function update_category_cache() {
|
||||
global $cache_categories, $wpdb;
|
||||
$dogs = $wpdb->get_results("SELECT * FROM $wpdb->categories");
|
||||
foreach ($dogs as $catt) {
|
||||
$catt->category_id = $catt->cat_ID; // Alias.
|
||||
$dogs = $wpdb->get_results("SELECT *, cat_ID as category_id FROM $wpdb->categories");
|
||||
foreach ($dogs as $catt)
|
||||
$cache_categories[$catt->cat_ID] = $catt;
|
||||
}
|
||||
}
|
||||
|
||||
function update_user_cache() {
|
||||
global $cache_userdata, $wpdb;
|
||||
|
|
Loading…
Reference in New Issue