Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active May 18, 2022 08:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/e4c624f14957df0d10ee3786996d6204 to your computer and use it in GitHub Desktop.
Save braddalton/e4c624f14957df0d10ee3786996d6204 to your computer and use it in GitHub Desktop.
WooCommerce WP_Query orderby rand https://wpsites.net/?p=109696
$args = array(
'post_type' => 'product',
'orderby' => 'rand',
'posts_per_page' => 3
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment