How to Center Your WPCodeBox Editor: A...
Optimize your WPCodeBox workflow with this snippet that centers the editor, positions...

WPCodeBox
296

This WooCommerce snippet allows you to easily change the default catalog order by price, date, or title. Simply uncomment the desired option (price, date, or title) and comment out the others to customize your product sorting.
<?php
add_filter('woocommerce_default_catalog_orderby', function () {
//return 'date';
//return 'title';
return 'price';
});





