- Impact
- 5
I would like to display different number of post in different categories. My current code on category.php is
<?php if ( is_category(array(2,37)) )
{
include(TEMPLATEPATH . '/category1.php');
}
else
{
include(TEMPLATEPATH . '/archive.php');
}
?>
All i want to do is integrate the code below with category1 above, but do not how to do it.
<?php query_posts('category_name=special_cat&showposts=10'); ?>
help highly appreciated.
nirav
<?php if ( is_category(array(2,37)) )
{
include(TEMPLATEPATH . '/category1.php');
}
else
{
include(TEMPLATEPATH . '/archive.php');
}
?>
All i want to do is integrate the code below with category1 above, but do not how to do it.
<?php query_posts('category_name=special_cat&showposts=10'); ?>
help highly appreciated.
nirav






