Guest User

Untitled

a guest
Jul 17th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. function eg_extend_subscription_expiration_options( $subscription_lengths ) {
  2. $subscription_lengths['year'][10] = wcs_get_subscription_period_strings( 10, 'year' );
  3. $subscription_lengths['year'][20] = wcs_get_subscription_period_strings( 20, 'year' );
  4. $subscription_lengths['month'][48] = wcs_get_subscription_period_strings( 48, 'month' );
  5. return $subscription_lengths;
  6. }
  7.  
  8. add_filter( 'woocommerce_subscription_lengths', 'eg_extend_subscription_expiration_options' );
Add Comment
Please, Sign In to add comment