E
eic2010
Beta
¡Usuario con pocos negocios! ¡Utiliza siempre saldo de Forobeta!
Hola quisiera saber si se puede mostrar el primer post mas ancho
Asi lo tengo :

Asi quisiera mostrarlo :

y asi es mi codigo en el index.php
desde ya gracias a todos
Asi lo tengo :

Asi quisiera mostrarlo :

y asi es mi codigo en el index.php
PHP:
<?php get_header(); ?>
<main class="wrap">
<section class="content-area content-thin">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<article class="article-loop">
<header>
<?php if ( has_post_thumbnail() ) { ?>
<div class='post-thumb'>
<a href="<?php the_permalink();?>" >
<?php the_post_thumbnail(''); ?>
</a>
</div>
<?php the_category(); ?>
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
</header>
<?php } ?>
</article>
<?php endwhile; else : ?>
<article>
<p>Sorry, no posts were found!</p>
</article>
<?php endif; ?>
</section><?php get_sidebar(); ?>
</main>
<?php get_footer(); ?>
desde ya gracias a todos