Skip to content

cubetech/export-users-to-csv

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 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

0 stars

Watchers

2 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • PHP 100.0%