register_importer( string $id, string $name, string $description, callable $callback )
Register importer for ClassicPress.
Parameters
- $id
-
(Required) Importer tag. Used to uniquely identify importer.
- $name
-
(Required) Importer name and title.
- $description
-
(Required) Importer description.
- $callback
-
(Required) Callback to run.
Return
Source
File: wp-admin/includes/import.php
function register_importer( $id, $name, $description, $callback ) {
global $wp_importers;
if ( is_wp_error( $callback ) )
return $callback;
$wp_importers[$id] = array ( $name, $description, $callback );
}
Changelog
Version | Description |
---|---|
WP-2.0.0 | Introduced. |