PHP Help – Parse Error
-
Parse error: parse error, unexpected T_STRING in /home/content/w/e/b/webs05/html/wordpress/wp-content/themes/GinsengCoffee/index.php on line 67
Below is the relevant code, with the line of interest pointed out:
<div id="wrapper"> <div id="content"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2> LINE WITH ERROR -> <small>Posted: <?php the_time('F jS, Y'); ?><!-- by <?php the_author() ?> --></small> <-TO HERE <div class="entry"> <?php the_content('Read the rest of this entry »'); ?> </div> <p class="postmetadata">Posted in <?php the_category(', ') ?> <strong>|</strong> <?php edit_post_link('Edit','','<strong>|</strong>'); ?> <?php if(function_exists('wp_print')) { print_link(); } ?> <strong>|</strong> <?php digg_it(); ?> <strong>|</strong> <?php hugg_it(); ?> </p> </div> <?php comments_template(); ?> <?php endwhile; ?> <p align="center"><?php wp_pagenavi(); ?></p> <?php else : ?> <h2 align="center">Not Found</h2> <p align="center">Sorry, but you are looking for something that isn't here.</p> <?php endif; ?> <br /><br /> </div>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘PHP Help – Parse Error’ is closed to new replies.