Hi Guys,
Im trying to reduce querys on my big blogs, but i keep running into one query thats in my logs like a 100 times everytime on a pageload. Does anyone know what this is, what it does and how i can get rid of it??
And as u can see the only thing that changes is the tr.object_id..what does this query do guys?
Because this one gets requested so much,
Im trying to reduce querys on my big blogs, but i keep running into one query thats in my logs like a 100 times everytime on a pageload. Does anyone know what this is, what it does and how i can get rid of it??
SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN ('category') AND tr.object_id IN (3222) ORDER BY t.name ASC
SELECT t.*, tt.* FROM wp_terms AS t INNER JOIN wp_term_taxonomy AS tt ON tt.term_id = t.term_id INNER JOIN wp_term_relationships AS tr ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tt.taxonomy IN ('category') AND tr.object_id IN (3189) ORDER BY t.name ASC
And as u can see the only thing that changes is the tr.object_id..what does this query do guys?
Because this one gets requested so much,