Tengo mi server, en la cual ya hable antes de eso aki y me encontre para mi u buen server, estoy creando un blog(wordpress), desde el server, instalandolo, el problema esque me baje una plantilla para wordpress llamada vintagerainbow y lo subi a la direccion de themes donde estan instalados los themes para wordpress, subi todos los archivos, pero al ejecutar me sale:
Parse error: syntax error, unexpected $end in /home/designcr/public_html/blog/wp-content/themes/vintagerainbow/index.php on line 57
al parecer no hay llave o abrir y el php <?php esta bien tal vez si estuviera asi <? ahi si saldria error, pero no,
les dejo el codigo para ver si pueden darme una mano con esto, a lo menos no veo el error o lo que le falta cerrar.
index.php
Código PHP:
<?php get_header(); ?>
<!-- Container -->
<div class="CON">
<!-- Start SC -->
<div class="SC">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="PostTime"><strong class="day">
<?php the_time('jS') ?>
</strong> <strong class="month">
<?php the_time('M') ?>
</strong></div>
<div class="Post" id="post-<?php the_ID(); ?>">
<div class="PostHead">
<h2><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark">
<?php the_title(); ?>
</a></h2>
<div class="PostDate"> <small class="PostCat">Posted in:
<?php the_category(', ') ?>
</small><small class="PostAuthor"> by
<?php the_author() ?>
</small> </div>
<div class="clr"></div>
</div>
<div class="PostContent">
<?php the_content('Read the rest of this entry »'); ?>
</div>
<div class="PostCom">
<ul>
<li class="Com">
<?php comments_popup_link('0 Comments', '1 Comment', '% Comments'); ?>
</li>
<?php if (function_exists('the_tags')) { ?>
<?php the_tags('<li class="Tags">Tags: ', ', ', '</li>'); ?>
<?php } ?>
</ul>
</div>
<div class="clr"></div>
</div>
<!--<?php trackback_rdf(); ?>-->
<div class="clr"></div>
<?php endwhile; ?>
<!-- Start Nav -->
<?php if (function_exists('wp_pagenavi')) { ?>
<?php wp_pagenavi(); ?>
<?php } ?>
<!-- End Nav -->
<?php else : ?>
<h2>
<?php _e('Not Found'); ?>
</h2>
<p>
<?php _e('Sorry, no posts matched your criteria.'); ?>
</p>
<?php get_footer(); ?>