$stickies = get_option('sticky_posts');
rsort($stickies);
$slideshow_cat = arras_get_option('slideshow_cat');
$featured1_cat = arras_get_option('featured1_cat');
$featured2_cat = arras_get_option('featured2_cat');
$news_cat = arras_get_option('news_cat');
$slideshow_count = (int)arras_get_option('slideshow_count');
$featured1_count = (int)arras_get_option('featured1_count');
$featured2_count = (int)arras_get_option('featured2_count');
$post_blacklist = array();
?>
arras_featured_loop( arras_get_option('featured1_display'), apply_filters('arras_featured1_query', array(
'list' => $featured1_cat,
'taxonomy' => arras_get_option('featured1_tax'),
'query' => array(
'posts_per_page' => $featured1_count,
'exclude' => $post_blacklist,
'post_type' => arras_get_option('featured1_posttype')
)
) ) );
?>
arras_featured_loop( arras_get_option('featured2_display'), apply_filters('arras_featured2_query', array(
'list' => $featured2_cat,
'taxonomy' => arras_get_option('featured2_tax'),
'query' => array(
'posts_per_page' => $featured2_count,
'exclude' => $post_blacklist,
'post_type' => arras_get_option('featured2_posttype')
)
) ) );
?>
$news_query_args = apply_filters('arras_news_query', array(
'list' => $news_cat,
'taxonomy' => arras_get_option('news_tax'),
'query' => array(
'posts_per_page' => arras_get_option('index_count'),
'exclude' => $post_blacklist,
'post_type' => arras_get_option('news_posttype'),
'paged' => $paged
)
) );
$news_query = arras_prep_query($news_query_args);
query_posts($news_query);
arras_featured_loop( arras_get_option('news_display'), $news_query_args, true );
if(function_exists('wp_pagenavi')) wp_pagenavi(); else { ?>
Ek Olarak: Yine kendim çözdüm site tema ayarlarında varmış. Fature page 1 ayarına yaptığım sayfayı -> Yazı olarak çevirdim yazıyıda yeni bir kategori açarak içine monta ettim ve Fature page 1 den görüntü ayarını Trandition gibi bi ayar var onu yaptım.
Sonra altında Fature page 2 ye Bonuslar kısmını ayarladım böylece yeni yaptığım sayfa altına kategorileri yerleştirmiş oldum. ;)