<?php
/*
Template Name: My template
*/
get_header();
Protect();
$blog_query = array(
'paged' => get_query_var('paged')
);
$posts = &query_posts('showposts=5&cat=3&paged='.$paged);
if (have_posts()) {
while (have_posts()) : the_post();
easel_display_post();
endwhile;
easel_pagination();
}
UnProtect();
get_footer();
?>
Line 17 – Where cat=(number) is your category id
Thanks, man. I kinda figured that out, but had read a little php to do it.