donde esta?
mira busqye en el index yno esta
Código HTML:
<?php get_header(); ?>
<div id="top-container">
<?php include(TEMPLATEPATH.'/includes/glide.php'); ?>
<?php include(TEMPLATEPATH.'/includes/tab.php'); ?>
<div class="clear"></div>
</div><!-- /top-container -->
<?php include(TEMPLATEPATH.'/includes/slide.php'); ?>
<div id="content">
<?php if (have_posts()) : $odd = true; ?>
<?php
while (have_posts()) :
the_post();
$image = get_post_meta($post->ID,'thumbnail', true);
?>
<div class="mini-post<?php if ($odd) echo ' odd'; ?><?php if (!$image) echo ' no-image' ?>" id="post-<?php the_ID(); ?>">
<h3 class="title"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<span class="datepost"><?php the_time('F j Y') ?></span>
<?php if($image) : ?>
<img class="thumbnail" src="<?php echo $image; ?>" alt="<?php the_title(); ?>" width="265" height="132" />
<?php endif ?>
<div class="entry">
<?php the_content_rss('', TRUE, '', 28); ?>
<a class="more-link" href="<?php the_permalink() ?>" title="Read More <?php the_title(); ?>"><span>Read More...</span></a>
</div>
</div>
<?php
$odd = !$odd;
endwhile;
$nextPost = get_next_posts_link('Next');
$prevPost = get_previous_posts_link('Previous');
?>
<center> <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?> </center>
<div class="clear"></div>
<div id="post-nav">
<?php if($nextPost): ?>
<div id="nav-next-post"><?php echo $nextPost ?></div>
<?php endif ?>
<?php if($prevPost): ?>
<div id="nav-prev-post"><?php echo $prevPost ?></div>
<?php endif ?>
<div class="clear"></div>
</div><!-- /post-nav -->
<?php else: ?>
<h3 class="center">Not Found</h3>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php endif ?>
<?php get_sidebar(); get_footer(); ?>