Supongamos que los videos están en la categoría 3 y que querés mostrar sólo 5 entradas:
Código PHP:
Ver original<?php
query_posts( 'cat=3&posts_per_page=5' );
while (have_posts()) : the_post(); ?>
<h3><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php the_excerpt();
endwhile;
?>
Ahí tenés un ejemplo de como sería. Ahora hay que ver en donde lo querés colocar, qué querés que muestre, etc. El código que dejé muestra el título con link a la nota (the_title() ) y las primeras palabras (the_excerpt).