wpseek.com
A WordPress-centric search engine for devs and theme authors



get_importers › WordPress Function

Since2.0.0
Deprecatedn/a
get_importers ( No parameters )
Returns:
  • (array)
Defined at:
Codex:

Retrieves the list of importers.



Source

function get_importers() {
	global $wp_importers;
	if ( is_array( $wp_importers ) ) {
		uasort( $wp_importers, '_usort_by_first_member' );
	}
	return $wp_importers;
}