Viewing 2 posts - 1 through 2 (of 2 total)
Reply To: Adding Author to post panel 7/10/2011 at 17:33
<?php // Add this code where you want to show the author name $post = get_post($item['ID']); $author_id = $post->post_author; // We get the author’s ID of the current post $author_name = get_userdata($author_id)->display_name; // We get the author’s display name echo $author_name; // We print the author’s name ?>
This topic has been closed to new replies.