Si, porque el loop quedó mal cerrado. Esas cosas tenés que mirarlas con atención y aprender a solucionarlas. La idea de este foro es aprender a hacer las cosas por uno mismo y no que te digan que copiar y pegar para que tu trabajo esté hecho...
Te pasé el link para que veas en el codex como se arman correctamente los bucles. También te conviene investigar sobre esos errores de "parse error" que te guían muchísimo para saber que modificar.
Probá esto. Pero si no tenés entradas hoy no te va a devolver nada.
Código:
<?php get_header(); ?>
<div id="content_box">
<div id="content" class="posts">
<?php
$current_month = date('m');
$current_year = date('Y');
$current_day= date('j');
$query = array(
'day' => $current_day,
'year' => $current_year,
'monthnum' => $current_month,
);
query_posts($query);
if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php echo titulo_corto('', 85); ?></a></h2>
<div class="entry">
<?php if (function_exists('the_excerpt_reloaded')) { ?>
<?php the_excerpt_reloaded(110, '<img><code><p><a><ul><ol><li><br /><blockquote><em><strong><div>', '', FALSE, 'content', FALSE, 1, TRUE); ?>
<?php } else { ?>
<?php } ?><p><a href="<?php the_permalink() ?>"></a></p>
</div>
<?php endwhile; ?>
<?php include (TEMPLATEPATH . '/navigation.php'); ?>
<?php else : ?>
<h2 class="page_header center">No Encontrado</h2>
<div class="entry">
<p class="center">No se encontró ninguna entrada.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
</div>
<?php endif; ?>
</div>
<?php include (TEMPLATEPATH . '/tags.php'); ?>
</div>
<?php get_footer(); ?>