Con el plugin nombrado anteriormente, lo instalo y todo y se me ve así:
Movi el codigo 20 veces, y la imagen o se ve como en la foto anterior, o se ve debajo del texto, necesito que quede asi:
El codigo php es este:
Código PHP:
<div id="front-list">
<?php
$page = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts("cat=-9,-15&paged=$page&posts_per_page=5"); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="clearfloat">
<h3 class=cat_title><?php the_category(', '); ?> »</h3>
<div class="title"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></div>
<div class="meta">[<?php the_time('j M Y') ?> | <?php comments_popup_link('Comentar Nota', '1 Comentario', '% Comentarios');?> | <?php if(function_exists('the_views')) { the_views(); } ?>]</div> <div class="wpsi"><?php wpsi(); ?></div>
<div class="spoiler">
<?php the_excerpt(); ?>
</div>
</div>