I’m trying to use wp_delete_user()
in my theme, to allow a user to delete their account from the front-end.
Turns out that the wp_delete_user()
is not defined unless /wp-admin/includes/user.php has been included.
Is there a right way to do this in WordPress? Something that uses get_bloginfo() or a global constant for example?
You need to add
require_once
statement at the beginning of yourfunctions.php
file: