WP-Members Bulk User Edit self-updates
WordPress plugin
by MMM Delicious · github.com/mmm-delicious/wp-members-bulk-user-edit
★ 0stars
0forks
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/mmm-delicious/wp-members-bulk-user-edit/archive/refs/heads/main.zipShips its own WordPress updater (Plugin Update Checker), so new versions show up under Dashboard → Updates.
A WordPress plugin that adds a CSV-based bulk user lookup and delete tool to the Users admin menu.
Features
- Upload a CSV file containing user emails or IDs
- Matches CSV rows to WordPress users
- Shows matched users in a table with Edit and Delete links
- CSV can use an
emailcolumn, anidcolumn, or both
Requirements
- WordPress 5.0+
- PHP 7.4+
- WP-Members plugin
Installation
- Upload the
wp-members-bulk-user-editfolder to/wp-content/plugins/ - Activate the plugin through the Plugins menu in WordPress
- Go to Users > Bulk Edit/Delete Users
CSV Format
Your CSV must include at least one of the following columns (case-insensitive):
| Column | Description |
|---|---|
email |
User's email address |
id |
WordPress user ID |
Example:
email,name
john@example.com,John
jane@example.com,Jane
Changelog
1.1
- Added ABSPATH security guard
- Added CSRF nonce to upload form
- Escaped all output in results table (XSS prevention)
- Standardized plugin header format
1.0
- Initial release