// code already there
query_posts("cat=$blog_include&showposts=$blog_num&paged=$page");
// do I do just add a separate line or is there some way to combine the two?
query_posts($query_string.'&showposts=3');
// Here is the full code block in case it's helpful
<?php
$blog_cats_include = get_option('vilisya_blog_cats_include');
if(is_array($blog_cats_include)) {
$blog_include = implode(",",$blog_cats_include);
}
$page = (get_query_var('paged')) ? get_query_var('paged') : 1;
$blog_num = get_option('vilisya_blog_num');
$blogtext = (get_option('vilisya_blogtext')) ? get_option('vilisya_blogtext') : 100;
query_posts("cat=$blog_include&showposts=$blog_num&paged=$page");
query_posts($query_string.'&showposts=3');
while ( have_posts() ) : the_post();
$wp_query->is_home = false;
?>
|