Quedaría de esta forma:
Código PHP:
Ver original<?php
$limit_time = time() - ( 7 * DAY_IN_SECONDS
); ?>
<?php if ($post_date > $limit_time):?>
<div class="nuevo"></div>
<?php endif ?>
<div class="div_fondito">
<section class="suf-mag-excerpts suf-mag-excerpts-3">
<!--sección vídeos -->
<?php
query_posts('cat=35&showposts=6');
while (have_posts ()): the_post();
global $post;
$thumb = vp_get_thumb_url($post->post_content);
/**
* GET THE POST TIME & TIME - 7 DAYS
*/
$limit_time = time() - ( 7 * DAY_IN_SECONDS
); ?>
<li class="suf-mag-excerpt entry-content suf-tile-3c below">
<?php if ($post_date > $limit_time):?>
<div class="nuevo"></div>
<?php endif ?>
<div align="center" style="font-style:italic" class="div_bloque">
</div>
<div class="div_bloque">
<a href="<?php the_permalink() ?>">
<?php
if ($thumb!='')
echo '<img width=90px height=120px;" src="'.$thumb.'" alt="'. get_the_title().'" />';
?>
</a>
</div>
<div class="div_bloque">
<a class="entry-title" href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
</div>
</li>
<?php endwhile; ?>
</section>
</div>