mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
9 lines
367 B
Text
9 lines
367 B
Text
add_filter( 'woocommerce_product_related_posts_shuffle', '__return_false' );
|
|
add_filter( 'woocommerce_output_related_products_args', 'wc_sort_related_products' );
|
|
|
|
function wc_sort_related_products( $args ) {
|
|
$args['orderby'] = 'id';
|
|
return $args;
|
|
}
|
|
|
|
// alternatively, use 'title', 'date', 'modified', 'menu_order' or 'price', see wc_products_array_orderby()
|