Hi Folks,
now here es a special code for an author box. I want to show the author box below the post.
Would you please tell me where exactly I have to insert this code snippet? I do also have the css. I have to insert this one at the end of css I guess? Thanx. Manu
<?php the_author_meta('display_name'); ?>">
<?php
if(function_exists('get_avatar')) {
echo get_avatar( get_the_author_meta('user_email'), '60', 'http://www.deinedomain.de/wp-content/avatare/deinavatar.jpg' );
}
//du kannst im Ordner wp-content noch einen Ordner für Avatare anlegen, um eigene Benutzerbildchen zu verwenden, falls kein Gravatar angelegt wurde
?>
<?php
// Abfrage des Autors wenn nicht(username admin), dann ist es ein Gastbeitrag,
// hier wird es abgefragt:
if (get_the_author_meta('user_login') != "admin") {
// ist es nicht der Admin, dann zeige den Gastautor
?>
<h3>Gastbeitrag von: <?php the_author_link(); ?></h3>
<p><?php the_author_meta('description'); // Zeigt die Autorenbiografie, die im Profil eingegeben wurde. ?></p>
<?php
} else { ?>
<h3>Über: <?php the_author_link(); //zeigt den Autorennamen und wenn vorhanden den Link zur Autorenwebseite, wenn im Profil angegeben?></h3>
<p><?php the_author_meta('description'); // Zeigt die Autorenbiografie, die im Profil eingegeben wurde. ?></p>
<?php } ?>
</div>