Forgive me if this has been posted but I've searched for over an hour and can't find anything relevant. I want to create specific pages for specific categories. For instance, I want to have a page for "Featured Resources" (cat=4). I've done this with the Streamline theme but the Church 3.0 theme seems to use different code.
Code:
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=".$blog_cat_1."&showposts=".$blog_cat_1_num."&paged=$page"); while ( have_posts() ) : the_post() ?>
I don't want to assume that this code would work in it's place and mess everything up:
Code:
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=33&showposts=5&paged=$page"); while ( have_posts() ) : the_post() ?>
Also, I've made a copy of the page_blog.php and renamed it page_featured_reasource.php. It doesn't show up in my theme editor. Can someone help me to navigate this? Thanks!