• 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)
  • What theme are you using? Where did you download it from?

    Thread Starter disno

    (@disno)

    The theme is Blonde from bang themes i bought it
    it actually not supports Menu-Bars
    “Your theme does not natively support menus”

    I’m sorry but as you are using a non-WPORG theme, you need to seek support from the theme’s developers – paid or otherwise. We only support themes downloaded from wordpress.org here.

    Thread Starter disno

    (@disno)

    ok thanks!

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.