简单的 WordPress 自助注销功能的示例代码,您可以将其添加到您的主题的 functions.php
文件中或创建一个插件来实现:
<?php
function custom_user_self_unregister() {
if ( isset( $_GET['action'] ) && $_GET['action'] == 'unregister' ) {
if ( is_user_logged_in() ) {
$user_id = get_current_user_id();
wp_delete_user( $user_id );
wp_redirect( home_url() );
exit;
}
}
}
add_action( 'init', 'custom_user_self_unregister' );
function custom_add_unregister_link() {
if ( is_user_logged_in() ) {
echo '<a href="?action=unregister"> 注销账号</a>';
}
}
add_action( 'wp_footer', 'custom_add_unregister_link' );
?>
© 版权声明
版权解释权归发文作者所有,未经允许,不得转载!侵权请举报!
THE END
暂无评论内容