mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
https://github.com/impress-org/givewp-snippet-library/blob/master/form-customizations/custom-anonymous-text.php
6 lines
211 B
Text
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' );
|