Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created September 12, 2018 14:56
Show Gist options
  • Save yousufansa/2baa71a0a95bc3bf1f7ff507aecea990 to your computer and use it in GitHub Desktop.
Save yousufansa/2baa71a0a95bc3bf1f7ff507aecea990 to your computer and use it in GitHub Desktop.
WooCommerce Add Custom Sorting 'rand' in Shop Page
add_filter( 'woocommerce_default_catalog_orderby_options', 'ec_child_woocommerce_custom_catalog_orderby_options' );
function ec_child_woocommerce_custom_catalog_orderby_options ( $sorting ) {
$sorting['rand'] = esc_html__( 'Random', 'electro-child' );
return $sorting;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment