Created
July 5, 2012 22:30
-
-
Save pippinsplugins/3056893 to your computer and use it in GitHub Desktop.
Register Custom EDD payment Statuses
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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