Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Last active July 18, 2016 03:15
Show Gist options
  • Save claudiosanches/da112ab9a88e79a1e947 to your computer and use it in GitHub Desktop.
Save claudiosanches/da112ab9a88e79a1e947 to your computer and use it in GitHub Desktop.
WooCommerce - Make related posts randomly
<?php
function rand_related_products_query( $query ) {
$query['limits'] = ' ORDER BY RAND() ' . $query['limits'];
return $query;
}
add_filter( 'woocommerce_product_related_posts_query', 'rand_related_products_query' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment