Hi all - i've now realised i'll probably have to edit one of the includes to get this feature - a file called author-template.php.
on line 448 you'll see
$authors = $wpdb->get_results("SELECT ID, user_nicename from $wpdb->users " . ($exclude_admin ? "WHERE user_login <> 'admin' " : '') . "ORDER BY display_name");
But I want to get rid of other types of users by excluding not simply the admin, but 'public' user types also. I've tried altering that line to this -
$authors = $wpdb->get_results("SELECT ID, user_nicename from $wpdb->users " . ($exclude_admin ? "WHERE user_login <> 'admin' AND 'public " : '') . "ORDER BY display_name");
and I also tried this -
$authors = $wpdb->get_results("SELECT ID, user_nicename from $wpdb->users " . ($exclude_admin ? "WHERE user_login <> 'public' " : '') . "ORDER BY display_name");
and this -
$authors = $wpdb->get_results("SELECT ID, user_nicename from $wpdb->users " . ($exclude_admin ? "WHERE user_login == 'public' " : '') . "ORDER BY display_name");
None of which has worked so far. HELP!
Will