Add a custom orderby search in WooCommerce
问题 I would like to add a custom search order to my theme that will sort products by page views. I already installed a Post Views Counter plugin to get the page views. Plugin documentation is available here. I found following code on WooCommerce documentation: add_filter( 'woocommerce_get_catalog_ordering_args', 'custom_woocommerce_get_catalog_ordering_args' ); function custom_woocommerce_get_catalog_ordering_args( $args ) { $orderby_value = isset( $_GET['orderby'] ) ? wc_clean( $_GET['orderby']