mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
https://github.com/easydigitaldownloads/library/blob/master/_checkout/add-password-hint.html
10 lines
234 B
Text
10 lines
234 B
Text
function pd_add_standard_wp_password_hint() {
|
|
?>
|
|
|
|
<p id="edd-password-hint-wrap">
|
|
<?php echo wp_get_password_hint(); ?>
|
|
</p>
|
|
|
|
<?php
|
|
}
|
|
add_action( 'edd_register_account_fields_after', 'pd_add_standard_wp_password_hint', 10, 2 );
|