开发者 | webdevmattcrom |
---|---|
更新时间 | 2018年3月10日 03:32 |
PHP版本: | 4.2 及以上 |
WordPress版本: | 4.8 |
export-users-to-csv
directory to the /wp-content/plugins/
directoryClick on the 'Export Users' button at the top of the 'Users' admin screen, or navigate to "Tools > Export." From there, choose "Users" as your export, then choose the role and the date range. Choose nothing at all if you want to export all users, then click 'Export'. That's all!
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(); }`