joseloma Seguir
Gamma
Verificación en dos pasos activada
Verificado por Whatsapp
¡Usuario con pocos negocios! ¡Utiliza siempre saldo de Forobeta!
- Desde
- 27 Ene 2014
- Mensajes
- 200
Gente como andan, con este código muestro 5 posts de las categorías 5 y 6 en la pagina de inicio con sus respectivas imágenes. ¿Se puede aplicar CSS para alinearlos 3 arriba y dos abajo con distintos tamaños? ¿Como podría hacerlo? Dejo el código para que lo miren. Saludos
PHP:
<?php $ID = $wp_query->posts[0]->ID;
$categoryvariable = get_the_category($ID);
$query= 'cat=5,6' . $categoryvariable. '&orderby=date&order=ASC&showposts=5';
query_posts($query);
?>
<ul>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Enlace directo a <?php the_title_attribute(); ?>" target="_blank"><?php the_title(); ?>
<?php if ( has_post_thumbnail() ) {?>
<?php the_post_thumbnail( 'homepage-thumb' );?>
<?php } else { ?>
<?php } ?>
</div>
</a>
<?php endwhile; endif; wp_reset_query(); ?>
</ul>