Hey,
I want wordpress to give me an array that contains all authors. There are some dumb functions, that echo html (wp_list_authors()) - but that's not what I want.
I want to get the full profile (ID, name, meta-data).
My current approach isn't, what I am looking for - to be exact, it's **it.
$authors = wp_list_authors(array(
'optioncount' => false,
'exclude_admin' => false,
'show_fullname' => false,
'hide_empty' => false,
'echo' => false,
'html' => false)
);
$authors = explode(", ", $authors);
And even here I am stuck, since there is no get_author_id_by_name() or similar.
Please help, I don't want to do SQL in a friggin template.