How to Add a Duplicate Post Button to ...
This WordPress snippet adds a “Duplicate Post” button to your admin panel...

WPCodeBox
553
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';
});



Disable WP-Cron for better WordPress performance and optimized site speed.


