<?php
// Liste aller Autoren und ihrer URLs
$authors = get_users(array(‚who‘ => ‚authors‘));
foreach ($authors as $author) {
$author_name = $author->display_name;
$author_url = get_author_posts_url($author->ID);
echo „Autor: $author_name – URL: $author_url <br>“;
}
?>