i m new to word press.
i face a problem whenever activating my theme.here is the index file's code.
Code:
<?php get_header(); ?> <div id=”colOne”> <div> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <h2 class=”title”><a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></a></h2> <h3 class=”posted”>Posted on <?php the_time(’F ,jS, Y ’) ;?> by <?php the_author() ;?> and filed under <?php the_category(’, ‘); ?> <strong>|</strong> <?php edit_post_link(’Edit’,”,’<strong>|</strong>’); ?> <?php comments_popup_link(’No Comments »’, ‘1 Comment »’, ‘% Comments »’); ?></h3> <div class=”story”> <?php the_content(’Read the rest of this entry »’); ?> <?php comments_template(); ?> </div> <?php endwhile; ?> <?php endif; ?> </div> <div style=”clear: both; height: 1px;”></div> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
pls let me know the reasons.as well as the way to solve.