Created
November 9, 2010 07:05
-
-
Save anthonycole/668804 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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