Code-Snippets-Functions/Execute a function on a child site/WordPress/disable-password-reset.txt

2 lines
131 B
Text

function fix_wp_disable_password_reset() { return false; }
add_filter ( 'allow_password_reset', 'fix_wp_disable_password_reset' );