An open API service indexing awesome lists of open source software.

https://github.com/wordpressutilities/wpu_import_export


https://github.com/wordpressutilities/wpu_import_export

Last synced: 7 days ago
JSON representation

Awesome Lists containing this project

README

          

# WPU Import Export

WPU Import Export is a wonderful plugin.

## Hook

```php
add_filter( 'wpu_import_export_post_types', function( $post_types ) {
$post_types['event'] = [
'post_type' => 'event',
'unique_key' => 'uniqid',
'columns' => [
'title' => [
'type' => 'post_title'
],
],
];
return $post_types;
} );
```