這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

LH Export Users to CSV

外掛說明

Export Users to CSV Plugin allows you to export users list and their metadata in CSV file. The CSV includes all the core wordpress user data, as well as the important meta fields, including:

  1. Username
  2. Email
  3. Display Name
  4. First Name
  5. Last Name
  6. Registered Date

This plugin, is deliberately simple, but it is also standards compliant, extendable, and built to maximise data security

Like this plugin? Please consider leaving a 5-star review.

Love this plugin or want to help the LocalHero Project? Please consider making a donation.

安裝方式

  1. Upload the entire lh-export-users-to-csv folder to the /wp-content/plugins/ directory.
  2. Activate the plugin through the ‘Plugins’ menu in WordPress.
  3. Navigate to Users->Export Users and click the button, that simple!

常見問題集

How do you export users?

  1. Fo to Tools in the wordpress admin menu
  2. Click the Generate Report in the Download your Users section

Why did you write this plugin?

I wrote this plugin because I wanted a plugin that:
1. Generated the csv dynamically, to ensure the security of my users data.
2. Used wordpress apis to generate the csv data, to ensure that it was the actual data I wanted (rather than querying the database directly as some plugins do).

How do I add fields to the download?

The plugin includes a filter called lh_eutc_headings, simply add the meta field to the headings array by use of this filter e.g.:

What is something does not work?

LH Logged In Post Status, and all https://lhero.org plugins are made to WordPress standards. Therefore they should work with all well coded plugins and themes. However not all plugins and themes are well coded (and this includes many popular ones).

If something does not work properly, firstly deactivate ALL other plugins and switch to one of the themes that come with core, e.g. twentyfifteen, twentysixteen etc.

If the problem persists pleasse leave a post in the support forum: https://wordpress.org/support/plugin/lh-export-users-to-csv/. I look there regularly and resolve most queries.

What if I need a feature that is not in the plugin?

Please contact me for custom work and enhancements here: https://shawfactor.com/contact/

function my_csv_filter_function($headings){

$headings[] = 'street_address';    

return $headings;

}

add_filter('lh_eutc_headings', 'my_csv_filter_function', 10, 1);

使用者評論

2020 年 3 月 6 日
Great, works as it should. I'm using it with BuddyPress, I mainly wanted to get the registration date and the ID. Would have been awesome to also get the field 'last activity', 'number of friends' and 'number of groups':)
閱讀全部 1 則使用者評論

參與者及開發者

以下人員參與了開源軟體〈LH Export Users to CSV〉的開發相關工作。

參與者

將〈LH Export Users to CSV〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

1.00 May 02, 2019
Initial release.