Hallo ich habe mir das mimbo2.2 siehe hier installiert.
Zu jedem Artikel soll ein Bild des Autors eingepflegt werden.
Die Beschreibung, Name des Autors erscheint nur nicht das Userphoto.
Ich nutze das Plugin Userphoto im Backend und die hochgeladenen Photos werden in uploads/userphoto gespeichert.
Folgenden Code habe ich in der single.php
ZitatAlles anzeigen<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><?php the_title(); ?></h2>
<small>By <?php the_author_posts_link('namefl'); ?> • <?php the_time('M jS, Y') ?> • Category: <?php the_category(', ') ?></small>
<div class="entry">
<?php the_content('<p class="serif">Weiterlesen »</p>'); ?><?php wp_link_pages(array('before' => '<p><strong>Seiten</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
<?php if ( function_exists('the_tags') ) {
the_tags('<span id="tags"><strong>Tagged as:</strong> ', ', ', '</span>'); } ?>
<div id="writer" class="clearfloat">
<img src="<?php bloginfo('template_url'); ?>/images/<?php the_author_login(); ?>.jpg" alt="" />
<p class="right"><strong><?php the_author_posts_link('namefl'); ?></strong> sagt: <?php the_author_description(); ?><br />
<span><a href="mailto:<?php the_author_email(); ?>" title="Email this author">Email an den Autor</a> | All posts by <?php the_author_posts_link('namefl'); ?></span></p>
</div><!--END WRITER-->
im template folder ist verzeichnis images vorhanden.
mache ich mit den Einstellungen im Backend was falsch?