Skip to content

Instantly share code, notes, and snippets.

@pippinsplugins
Created July 5, 2012 22:30
Show Gist options
  • Save pippinsplugins/3056893 to your computer and use it in GitHub Desktop.
Save pippinsplugins/3056893 to your computer and use it in GitHub Desktop.
Register Custom EDD payment Statuses
<?php
function pippin_edd_extra_statuses( $statuses ) {
$statues['your_status_id'] => 'Your Status Label';
$statues['your_second_status_id'] => 'Your Second Status Label';
return $statuses
}
add_filter('edd_payment_statuses', 'pippin_edd_extra_statuses');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment