On this page
register_importer( string $id, string $name, string $description, callable $callback ): void|WP_Error
Registers importer for WordPress.
Parameters
$idstring Required-
Importer tag. Used to uniquely identify importer.
$namestring Required-
Importer name and title.
$descriptionstring Required-
Importer description.
$callbackcallable Required-
Callback to run.
Return
void|WP_Error Void on success. WP_Error when $callback is WP_Error.
Source
File: wp-admin/includes/import.php. View all references
function register_importer( $id, $name, $description, $callback ) {
global $wp_importers;
if ( is_wp_error( $callback ) ) {
return $callback;
}
$wp_importers[ $id ] = array( $name, $description, $callback );
}
Related
Uses
| Uses | Description |
|---|---|
| is_wp_error() wp-includes/load.php | Checks whether the given variable is a WordPress Error. |
Changelog
| Version | Description |
|---|---|
| 2.0.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/register_importer