wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_importers › WordPress Function

Da2.0.0
Deprecaton/a
get_importers ( Nessun parametro )
Ritorna:
  • (array)
Definito a:
Codex:

Retrieves the list of importers.



Sorgenti

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