Is there a list of all possible fields for sorting in WooCommerce?
I see that it is possible to add your custom field for sorting products in WooCommerce (e.g. this question) Copying from the example: add_filter( 'woocommerce_get_catalog_ordering_args', 'enable_catalog_ordering_by_modified_date' ); function enable_catalog_ordering_by_modified_date( $args ) { if ( isset( $_GET['orderby'] ) ) { if…