wordpress tema med en fejl i søgning
hejjeg har ingen viden om programering overhoved, og jeg står med et problem med en del af et wordpress tema med navnet ragteka
jeg vil bruge dette tema til min wordpress men der kommer en fejl når jeg forsøgere at bruge dens søge funtion, fejlen ser sådan her ud i log filen i apache
PHP Parse error: syntax error, unexpected ')' in /var/www/******.dk/public_html/html/wp-content/themes/ragteka/search.php on line 27
scriptet vises her
<?php get_header(); ?>
<?php get_sidebar(); ?>
<div id="main">
<div class="topnav"><?
$var = $_GET[s];
?>
<div class="location"><? _e('Search Results for:','slimmity') ?> <? print $var;?></div>
<div class="search">
<form id="searchform" method="get" action="<?php bloginfo('url'); ?>">
<input type="text" name="s" id="s" size="15" />
</form>
</div>
</div>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post">
<div class="header">
<div class="comments"><?php comments_popup_link('0', '1', '%'); ?></div>
<div class="title">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="meta"><?php the_time('F jS, Y') ?> <? _e('at','slimmity') ?> <?php the_time() ?> <? _e('by','slimmity') ?> <?php the_author() ?> <? _e('in','slimmity') ?> <?php the_category(', ') ?></div>
</div>
</div>
<div class="entry">
<?php the_content(__('Read the rest of this entry »','slimmity'?); ?>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
<?php else : ?>
<h3 class="center">No posts found. Try a different search?</h2>
<?php endif; ?>
</div>
<?php get_footer(); ?>
linje 27 ser sådan her ud
<?php the_content(__('Read the rest of this entry »','slimmity'?); ?>
mvh toastmaster