| 开发者 | digitaldive |
|---|---|
| 更新时间 | 2026年2月23日 10:17 |
| PHP版本: | 7.4 及以上 |
| WordPress版本: | 6.9 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
/wp-content/plugins/ or install via the WordPress Plugin Directory.Yes. On activation, Blocdash can generate Login, Register, Profile, and Dashboard pages. You can disable this behavior using the blocdash_create_default_pages filter.
Yes. All major features are modular and can be toggled from the admin dashboard.
Yes. Users can update profile information, passwords, and account settings without accessing wp-admin.
Yes. You can enable account deletion from: Blocdash → Register Form → Account Management
Yes. Use the following filters: ``` add_filter( 'blocdash_allow_admin_account_delete', '__return_true' ); add_filter( 'blocdash_account_delete_reassign', function( $reassign_id, $user_id ) { return 1; // Reassign posts to user ID 1 }, 10, 2 ); ```