https://github.com/wordpressutilities/wpu_import_export
https://github.com/wordpressutilities/wpu_import_export
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/wordpressutilities/wpu_import_export
- Owner: WordPressUtilities
- License: mit
- Created: 2026-06-19T21:25:57.000Z (14 days ago)
- Default Branch: main
- Last Pushed: 2026-06-21T21:02:21.000Z (12 days ago)
- Last Synced: 2026-06-21T23:04:40.494Z (12 days ago)
- Language: PHP
- Size: 36.1 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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;
} );
```