Buscando...

Foro » Adding Author to post panel

Tagged: 

This topic has 2 voices, contains 1 reply, and was last updated by  Sumolari 228 días ago.

Viewing 2 posts - 1 through 2 (of 2 total)
Jared

Adding Author to post panel 7/10/2011 at 1:54 #6111

I read the documentation but it’s so confusing. Can you give me the basic steps just to add the author of the post under the title. Im just using the default skin.

Reply To: Adding Author to post panel 7/10/2011 at 17:33 #6123

<?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
?>
Viewing 2 posts - 1 through 2 (of 2 total)

This topic has been closed to new replies.