Hi,
was muss ich am Code anpassen um den Admin in der Liste nicht anzeigen zu lassen.
http://radiokorneuburg.purespace.eu/team/
ich verwende diesen PHP Code, der in der functions.php liegt:
PHP
function contributors() {global $wpdb;
$authors = $wpdb->get_results("SELECT ID, user_nicename from $wpdb->users ORDER BY display_name");
foreach($authors as $author) {echo "<li>";echo "<a href=\"".get_bloginfo('url')."/?author=";echo $author->ID;echo "\">";echo userphoto($author->ID);echo "</a>";echo '<div>';echo "<a href=\"".get_bloginfo('url')."/?author=";echo $author->ID;echo "\">";the_author_meta('display_name', $author->ID);echo "</a>";echo "</div>";echo "</li>";}