Solucionado ...
Código:
<ul>
<?php
global $post;
$args = array( 'numberposts' => 5, 'post_type' => 'cortitas' );
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>
<li>
<h3><?php the_title();?></h3><br />
<p><?php echo limit_words(get_the_excerpt(), '55') ;?></p>
<div class="more"><a href="<?php the_permalink();?>">Ver más</a></div>
</li>
<?php endforeach; ?>
</ul>
Aqui estaaba la solucion http://codex.wordpress.org/Template_Tags/get_posts
Perdon por las molestias estaba desesperado :P