Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 833 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 833 Bytes

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();
}