My php skill are minimal. Any help is much appreciated. Here's my problem - whenever I change the permalink structure in Wordpress to the SEO-friendly /%category%/%postname%/ I get the following error.
Thanks for any help.
The code on single.php looks like:Parse error: syntax error, unexpected $end in /home/xxxxxx/public_html/articles/wp-content/themes/silverjacket/single.php on line 27
<?php get_header(); ?>
<div id="container">
<?php if(have_posts()): ?><?php while(have_posts()):the_post(); ?>
<div class="post">
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="entry">
<?php the_content(); ?>
<?php link_pages('<p><strong>Pages:</strong>','</p>','number'); ?>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
</div></body>
</html>
Thanks for any help.