Desplegar articulos en wp
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
<?php $featured = get_posts('numberposts=10&category_name=featured'); foreach($featured as $post): $first = ($post == $featured[0]); setup_postdata( $post ); if($first): ?> <div class="post main-featured"> <h2><?php the_title(); ?></h2> <p><?php the_excerpt(); ?></p> </div> <?php else: ?> <div class="post featured"> <h2><?php the_title(); ?></h2> </div> <?php endif; endforeach; ?>