Skip to content

Instantly share code, notes, and snippets.

@cagartner
Forked from claudiosanches/functions.php
Created July 18, 2016 03:15
Show Gist options
  • Save cagartner/3ce7de883e15e5ce990134669be76fef to your computer and use it in GitHub Desktop.
Save cagartner/3ce7de883e15e5ce990134669be76fef 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