Simple CSV Exporter.
As of April 2026, Simple CSV Exporter is a WordPress csv plugin with 300 active installations and a 5/5 rating from 1 reviews. It has been downloaded 4.4K+ times in total. Requires WordPress 5.8+ and PHP 8.0+. Available on WordPress.org since 2020. Last updated 1 year ago — may have compatibility concerns. Top alternative: TablePress – Tables in WordPress made….
Simple CSV Exporter. Exported CSV can be imported with Really Simple CSV Importer.
When you select a post type, the posts will be exported.
Github Repo: https://github.com/hamworks/simple-csv-exporter
Customize for column.
use HAMWORKS\WP\Simple_CSV_Exporter\Data_Builder;
add_action( 'simple_csv_exporter_created_data_builder',
function ( Data_Builder $data ) {
// Remove column.
$data->append_drop_column( 'page_template' );
// Add custom field column.
$data->append_meta_key( 'my_meta_key' );
}
);
Customize posts for export.
add_action( 'simple_csv_exporter_data_builder_for_wp_posts_pre_get_posts',
function ( WP_Query $query ) {
$query->set( 'order', 'ASC' );
}
);
Data filter for metadata.
a…
| WordPress | 5.8+ requiredTested up to 6.7.5 |
| PHP | 8.0+ required |
Plugin data sourced from WordPress.org. Analysis and metrics by PluginSift.