Skip to content

mathetos/export-users-to-csv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Export Users to CSV

A WordPress plugin that exports user data and meta data. You can even export the users by role and registration date range.

By default, it does not export user passwords as a security concern. See the FAQ for how to include them regardless.

###Screenshots The User export screen The User export screen

The User export button The User export button

###FAQ How do I include user passwords in the export? I don’t really recommend it since storing passwords in plain-text can be a real liability issue. Nevertheless, you can add this filter to your site to allow the password to be included as a column in your CSV file:

add_filter('pp_eu_exclude_data', 'my_prefix_include_password');

function my_prefix_include_password() {
     return array();
}

About

A plugin that export ALL user data and meta data, and that works! You can even export the users by role and registration date range.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages