CodeDropz

WooCommerce - Before Auto Delete

Oct 10th, 2020 (edited)
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. add_filter('dndmfu_wc_time_before_auto_deletion','adjust_time_deletion');
  2.  
  3. function adjust_time_deletion( $time ) {
  4.     $time = '604800'; // 1 week
  5.     return $time;
  6. }
Add Comment
Please, Sign In to add comment