mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
https://stackoverflow.com/questions/63435640/display-woocommerce-products-randomly-by-default-on-shop-page
6 lines
250 B
Text
6 lines
250 B
Text
add_action( 'pre_get_posts', 'shop_default_orderby_rand' );
|
|
function shop_default_orderby_rand( $query ) {
|
|
if ( is_shop() && ( ! isset($_GET['orderby']) || 'menu_order' === $_GET['orderby'] ) ) {
|
|
$query->set( 'orderby', 'rand' );
|
|
}
|
|
}
|