How to retrieve the author of the post
-
Hi all, I’m new to wp theme designing.
Say I’m writing single.php. How can I do
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<div id=”<?php
if(author_of_the_post == “admin”)
echo ‘single1’;
else
echo ‘single2’;
?>”>
…I.e., what should be “author_of_the_post”?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘How to retrieve the author of the post’ is closed to new replies.