196,
'posts_per_page' => 8,
'orderby' => 'date',
'order' => 'DESC'
));
// El loop
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
echo '
';
echo '
';
the_post_thumbnail();
echo '
';
echo '
';
the_title();
echo '
';
echo '
';
the_excerpt();
echo '
';
echo '
';
echo '
';
echo '
';
}
}
// resetear la consulta
wp_reset_postdata();
?>