mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
5 lines
160 B
Text
5 lines
160 B
Text
add_filter('give_checkout_personal_info_text', 'new_personal_info_text');
|
|
|
|
function new_personal_info_text() {
|
|
return __('Tell us about yourself', 'give');
|
|
}
|