My Idea is to write a simple plugin. The info-text you can save in the author description and upload an Image with the ID of the User in the Theme folder.
And just a litte CSS like Ryan has posted.PHP Code:<?php
$guest = <<<EOF
<div class="guestposter">
<?php the_author_description(); ?>
<img alt="<?php the_author(); ?>" src="<?php bloginfo('stylesheet_url'); ?>/guestposter/<?php the_author_ID(); ?>.jpg">
</div>
EOF;
<?php if(the_author_ID() != 1)
{
echo $guest;
}
?>


LinkBack URL
About LinkBacks
Reply With Quote
