Hi,
ich habe ein Template geschrieben, in dem alle Autoren meines Blogs vorgestellt werden sollen. Dazu habe ich folgenden Code benutzt:
PHP
[b]Informationen über die Autoren:[/b]
<?php if (have_posts()) : while (have_posts()) : the_post();?>
<ul>
[b]<?php the_author() ?>[/b]
[b]Biografie:[/b] <?php the_author_description(); ?>
[b]Homepage:[/b] [url="<?php the_author_url(); ?>"]<?php the_author_url(); ?>[/url]
[b]E-Mail:[/b] [url="mailto:<?php the_author_email(); ?>"]<?php the_author_email(); ?>[/url]
[b]ICQ:[/b] <?php the_author_icq(); ?>
[/list]
<?php endwhile; endif; ?>
Alles anzeigen
Es wird aber immer nichts angezeigt. Wo ist der Fehler?