Quotes Collection: ORDER BY RAND() fix…
Tuesday, April 28th, 2009A small change for the excellent Quotes Collection plugin that removes an “ORDER BY RAND()”, which tends to suck all of the randomness out of my site pretty quickly: function quotescollection_get_randomquote($exclude = 0) { $offset = rand( 0, quotescollection_count() ); global $wpdb; if($exclude && is_numeric($exclude)) $exclude_condition = ‘AND quote_id <> ‘.$exclude; $sql = “SELECT quote_id, […]