Descargas
$args = array( ‘category_name’ => ‘descargas’, ‘posts_per_page’ => 10, ‘orderby’ => ‘date’, ‘order’ => ‘DESC’);
// The Query
query_posts( $args );
// The Loop
while ( have_posts() ) : the_post();
echo ‘
‘;
the_title();
echo ‘
‘.recorta_post_a(20).’
‘;
endwhile;
// Reset Query
wp_reset_query();
?>
