este es el sector que yo debo modificar index.php
Código PHP:
<div id="bottom" class="clearfloat">
<div id="front-list">
<?php
$page = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts("cat=-27,-28&paged=$page&posts_per_page=8"); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="clearfloat">
<div class="titulonoti"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></div><div class="meta">
<div class="spoiler">
<?php $values = get_post_custom_values("Image");
if (isset($values[0])) { ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<img src="<?php echo bloginfo('template_url'); ?>/scripts/timthumb.php?src=/<?php
$values = get_post_custom_values("Image"); echo $values[0]; ?>&w=146&h=77&zc=1&q=100"
alt="<?php the_title(); ?>" class="left" width="146px" height="77px" /></a>
<?php } ?>
<div class="letra2"><?php the_excerpt(); ?></div>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="522" height="18" align="left" valign="top"><?php the_time('l, j/m/y') ?></td>
<td width="57%" rowspan="2" align="right"><?php if(function_exists('the_views')) { the_views(); } ?></td>
</tr>
<tr>
<td height="1"></td>
</tr>
</table>
</div>
</div>
</div>