Skip to content

Instantly share code, notes, and snippets.

@corsonr
Created May 30, 2014 13:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corsonr/da403299fc991c49dad9 to your computer and use it in GitHub Desktop.
Save corsonr/da403299fc991c49dad9 to your computer and use it in GitHub Desktop.
WPdonations: edit available donations amounts
add_filter( 'donation_available_amounts', 'my_custom_amounts' );
function my_custom_amounts() {
$options = array(
'5' => '5',
'10' => '10',
'20' => '20',
'30' => '30',
'40' => '40',
'50' => '50'
);
return $options;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment