Skip to content

Instantly share code, notes, and snippets.

@anthonycole
Created November 9, 2010 07:05
Show Gist options
  • Select an option

  • Save anthonycole/668804 to your computer and use it in GitHub Desktop.

Select an option

Save anthonycole/668804 to your computer and use it in GitHub Desktop.
<?php
query_posts( array( 'post_type' => 'video', 'posts_per_page' => 2, 'paged' => get_query_var( 'paged' ) ) );
while( have_posts() ) : the_post();
?>
<div class="widget">
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
<a href="<?php the_permalink(); ?>">
<?php
if ( has_post_thumbnail() )
the_post_thumbnail( 'aggregate' );
?>
</a>
<p>
<?php the_content_limit( 100, ' Read more' ); ?>
</p>
</div>
<?php endwhile; ?>
</div>
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment