Hi,
This is really embarrassing. I cannot find a parse error in a short snippet of code. I'm sure it is pretty obvious. Once I add this to my WordPress header.php:
<?php
if (is_home() && $post==$posts[0] && !is_paged())
{ echo '<div class="description"><h1><?php bloginfo('description'); ?></h1></div>'; }
else
{ echo '<div class="description"><?php bloginfo('description'); ?></div>'; }
?>
I get a:
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';'
I've read through W3Schools and php.net but I don't see how I can fit another semicolon here.
Please help!