• Basically trying to display the user bio for the author of the current post being viewed. Example: If you clicked on an individual entry to view the page itself (single.php).. I would like to display the author’s biography (inputted in the user control panel) underneath the post.

    Currently using the code below but is only pulling the author’s name but not the bio.

    <div class="entryAuthorBio">
                        	<h3>About <?php echo(get_the_author()); ?></h3>
                        	<?php wp_get_current_user(); ?>
                        	<p><?php echo $current_user->description; ?></p>
                        </div>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Pulling Author Bios via Single.php’ is closed to new replies.