Dec 13, 2008 25
Support author name(s) in Grid Focus
To answer Naren’s request for a multi authored site using Grid Focus. This change will need to be made in two files: index.php & single.php.
Immediately below the title tags:
<h2><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title() ?></a></h2>
Add the following:
<p class="articleAuthor">By: <?php the_author(); ?></p>
Tweak the look in the stylesheet using the class .articleAuthor {}. More information concerning the_author() can be found in the WordPress Codex.