I am looking for a way to make it so blog posts written by "Zac" have a different color link to the author than those written by "Erich". I have tried to come up with a script that would echo a class tag for each author, based on the author, but it isn't working. Does anyone have any ideas on how to implement something like this?
<?php if ($author='Zac') { echo '<span class="zac">'; the_author_posts_link(); echo '</span>'; } else if { ($author='Erich') echo '<span class="erich">'; the_author_posts_link(); echo '</span>'; } endif; ?>
Thanks,
Erich