0)
$query = array('post__in' => $stickies, 'showposts' => arras_get_option('slideshow_count') );
} elseif ($featured1_cat == '0') {
$query = 'showposts=' . arras_get_option('slideshow_count');
} else {
$query = 'showposts=' . arras_get_option('slideshow_count') . '&cat=' . $featured1_cat;
}
$q = new WP_Query( apply_filters('arras_slideshow_query', $query) );
?>
have_posts()) : while ($q->have_posts()) : $q->the_post(); ?>
0)
$query2 = array('post__in' => $stickies, 'showposts' => arras_get_option('featured_count') );
} elseif ($featured2_cat == '0') {
$query2 = 'showposts=' . arras_get_option('featured_count');
} else {
$query2 = 'showposts=' . arras_get_option('featured_count') . '&cat=' . $featured2_cat;
}
$q2 = new WP_Query( apply_filters('arras_featured_query', $query2) );
arras_get_posts('featured', $q2);
?>
arras_get_option('news_cat'),
'paged' => $paged,
'showposts' => ( (arras_get_option('index_count') == 0 ? get_option('posts_per_page') : arras_get_option('index_count')) )
);
// if you are a WP plugin freak you can use 'arras_news_query' filter to override the query
wp_reset_query(); query_posts(apply_filters('arras_news_query', $news_query));
arras_get_posts('news') ?>