Dejános tus consultas, comentarios o sugerencias, así te contactamos a la brevedad. Tu aporte es siempre bienvenido y nos ayuda a mejorar.
[insert_php]
$args = array (
‘category_name’ => ‘novedades’,
‘posts_per_page’ => 4,
);
// The Query
$query = new WP_Query( $args );
// The Loop
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
[/insert_php]
[insert_php]
// do something
// $query->the_post_thumbnail();
}
} else {
// no posts found
}
// Restore original Post Data
wp_reset_postdata();
[/insert_php]