![]() |
|
||||||
|
|
Thread Tools | Display Modes |
|
#1
|
||||
|
||||
|
Video Tutorial
Text Tutorial Step #1 Inside your WordPress dashboard, go to Appearance > Streamline Theme Options and you can select the category you wish to display on your blog page. Step #2 Go to your WordPress dashboard under Pages > Add New to add a new page. Step #3 Select the Blog page template from the drop down menu under the Page Template section (Attributes) in the right hand column. Step #4 Publish your page. Version 3.0 If you want to display all categories on your Blog page, open the page_blog.php file and look for this code: Code:
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=".get_theme_mod('blog_cat')."&showposts=".get_theme_mod('blog_cat_num')."&paged=$page"); while ( have_posts() ) : the_post() ?>
Code:
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("showposts=".get_theme_mod('blog_cat_num')."&paged=$page"); while ( have_posts() ) : the_post() ?>
If you want to display all categories on your Blog page, open the page_blog.php file and look for this 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() ?>
Code:
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("showposts=".$blog_cat_1_num."&paged=$page"); while ( have_posts() ) : the_post() ?>
__________________
StudioPress | Follow StudioPress on Twitter | Fan Us on Facebook | Read the StudioPress Blog |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to Setup the Blog Page Template...+V | tutorials | General Discussion | 1 | 10-14-2009 12:44 PM |
| How to Setup the Blog Page Template ... +V | tutorials | General Discussion | 1 | 10-14-2009 12:27 PM |
| How to Setup the Blog Page Template ... +V | tutorials | General Discussion | 1 | 10-06-2009 12:38 PM |
| How to Setup the Blog Page Template For Your Site...+V | tutorials | General Discussion | 1 | 10-06-2009 11:53 AM |
| How to Setup the Blog Page Template (+V) | tbudiman | General Discussion | 3 | 09-24-2009 06:03 PM |
© Copyright 2012 Copyblogger Media LLC · StudioPress™ is a trademark of Copyblogger Media LLC
Privacy Policy | Refund Policy | Terms of Service | Affiliate Program | Contact Us