Code-Snippets-Functions/Execute a function on a child site/GiveWP/custom-anonymous-text.txt

6 lines
211 B
Text

function custom_anonymous_donation_checkbox_label($text) {
$text = 'YOUR CUSTOM TEXT HERE';
return $text;
}
add_filter( 'give_anonymous_donation_checkbox_label', 'custom_anonymous_donation_checkbox_label' );