• I have the following query that I don’t want to be cached

    SELECT wp_posts.ID FROM wp_posts INNER JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) WHERE 1=1 AND ( wp_term_relationships.term_taxonomy_id IN (4) ) AND wp_posts.post_type = 'boxes' AND (wp_posts.post_status = 'publish' OR wp_posts.post_status = 'private') GROUP BY wp_posts.ID ORDER BY RAND() DESC LIMIT 0, 3

    In the ignore query stems box I’ve written “boxes”. But the result is cached anyway. What am I doing wrong?

    http://wordpress.org/extend/plugins/w3-total-cache/

  • The topic ‘Ignore query stem doesn't work’ is closed to new replies.