Hi,
ich würde gerne in der Archivseite (also außerhalb des Loops) den Namen und die Beschreibung des Autors auslesen.
Momentan habe ich folgenden Code:
PHP
<?php /* If this is an author archive */ } elseif (is_author()) { ?>
<h2>Artikel von <?php the_author(); ?>NAME</h2>
<p><?php echo the_author_description(); ?>BESCHREIBUNG </p>
<p><b>NAME <?php the_author(); ?></b> hat insgesamt <b><?php the_author_posts(); ?> Artikel</b> geschrieben. <br />Die letzten 5 Artikel waren:</p>
leider ignoriert er sowohl
als auch
Komischerweise liest er aber die Anzahl der Posts des Autors aus?!