StudioPress Community Forums
  StudioPress Community Forums > Forums > General Discussion
For help and support, access to your downloads, or to manage your account please log into My StudioPress.

These forums have been set to read-only so you can browse the existing topics for any questions you may have.

For general discussion on WordPress, CSS and design (NOT for support) visit the new Community Forums.
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 10-14-2009, 09:07 AM
tutorials's Avatar
tutorials tutorials is offline
Training
 
Join Date: Aug 2009
Location: cyberspace
Posts: 825
Default How to Setup the Blog Page Template...+V

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() ?>
And replace it with this code:
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() ?>
Version 2.0/2.1
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() ?>
And replace it with this code:
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() ?>
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

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


All times are GMT -5. The time now is 03:59 PM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.