Definition:
function get_importers() {}
Retrieve list of importers.
Source code
function get_importers() {
global $wp_importers;
if ( is_array($wp_importers) )
uasort($wp_importers, create_function('$a, $b', 'return strcmp($a[0], $b[0]);'));
return $wp_importers;
}
1428

February 12, 2011 


No comments yet... Be the first to leave a reply!