Export your post, page, custom post type, and user data to Excel file format (.XLSX)
Get all of your WordPress data into Excel (.XLSX file). This plugin allows you to export all of your post data, including custom post types. And all User data, including BuddyPress profile fields.
- Export any Post Type. Finds all available post types on your website for export.
- Export all User Data. Includes custom fields, custom meta, and BuddyPress profile fields.
- Upload
excel-export.php
to the/wp-content/plugins/
directory. - Activate the plugin through the 'Plugins' menu in WordPress.
- Click on the "Excel Export" menu item located under the Tools menu.
By default, extended profile data is not included in your export. To export this data please use add_filter as show below:
add_filter( 'excel_export_user_buddypress', function ( $default_user_buddypress ) {
$add_buddypress = [
'YourField' => 'YourField',
'AnotherField' => 'AnotherField',
];
return array_merge( $default_user_buddypress, $add_buddypress );
} );