StudioPress Community Forums
  StudioPress Community Forums > Forums > General Discussion
For help and support, access to your downloads, or to manage your account please log into My StudioPress.

These forums have been set to read-only so you can browse the existing topics for any questions you may have.

For general discussion on WordPress, CSS and design (NOT for support) visit the new Community Forums.
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #2  
Old 03-12-2010, 02:20 PM
Jon's Avatar
Jon Jon is offline
Community Moderator
 
Join Date: Oct 2008
Location: New York
Posts: 4,037
Default

If you want to include the author name a picture and a bio this is a neat little tool:
PHP Code:
///add author pic and bio

function get_author_bio ($content=''){
   global 
$post;

   {

   
$post_author_name=get_the_author_meta("display_name");
   
$post_author_description=get_the_author_meta("description");
   
$html="<div class='clearfix' id='about_author'>\n";
   
$html.="<img width='80' height='80' class='avatar' src='http://www.gravatar.com/avatar.php?gravatar_id=".md5(get_the_author_email()). "&default=".urlencode($GLOBALS['defaultgravatar'])."&size=80&r=PG' alt='PG'/>\n";
   
$html.="<div class='author_text'>\n";
   
$html.="<h4>Author: ".$post_author_name."</h4>\n";
   
$html.= $post_author_description."\n";
   
$html.="<div class='clear'></div>\n";
$html.="</div>\n</div>\n";

   
$content .= $html;
   }

   return 
$content;
}
add_filter('the_content''get_author_bio'); 
Add that to your functions.php file and it will automatically display the info.

It will by default show it at the bottom of the post, but you can adjust it accordingly. Might not be exactly what you're looking for, but I figured I'd throw it out there.
__________________
Thanks,
Jon Weisss
Request a quote
Need WordPress Maintenance?
I'm A Recommended Designer
Skype: weiss.jonathan
Please respect my privacy. Do not pm or email me regarding support questions unless otherwise instructed.
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
author info myboxingfans General Discussion 1 07-04-2010 04:25 PM
author.php duplicate info fmf General Discussion 4 03-22-2010 12:27 PM
Author info box after posts? jayvega General Discussion 1 01-28-2010 09:59 PM


All times are GMT -5. The time now is 07:56 AM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.