Parse error: syntax error, unexpected '.', expecting ')' in line 29
-
The issue is when i put a page on my menu bar and i click on it i got this error why is that please help ?
<?php get_header(); ?> <?php get_sidebar(); ?> <div id="midle" class="fl"> <div class="spacer"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <div class="postdata"> <ul> <li class="time"><?php the_time('F jS, Y') ?></li> <li class="posted">Posted in <?php the_category(', ') ?></li> <li><?php edit_post_link('Edit', '', ''); ?></li> </ul> </div> <?php the_content('Continue reading...');?> <div class="clr"></div> </div> <?php endwhile; ?> <div class="navigation"> <?php wp_link_pages( ... ); ?> </div> <?php else : ?> <div class="post"> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php //include (TEMPLATEPATH . "/searchform.php"); ?> </div> <?php endif; ?> </div> </div> <?php include_once ('sidebar2.php'); ?> <?php get_footer(); ?>This is what written in line <?php wp_link_pages( … ); ?>
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Parse error: syntax error, unexpected '.', expecting ')' in line 29’ is closed to new replies.