WordPress Version: 6.1
/**
* WordPress Administration Importer API.
*
* @package WordPress
* @subpackage Administration
*/
/**
* Retrieves the list of importers.
*
* @since 2.0.0
*
* @global array $wp_importers
* @return array
*/
function get_importers()
{
global $wp_importers;
if (is_array($wp_importers)) {
uasort($wp_importers, '_usort_by_first_member');
}
return $wp_importers;
}