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
  #5  
Old 11-18-2008, 07:00 PM
Paul Paul is offline
Registered User
Pro Plus Member
 
Join Date: Oct 2008
Location: Edinburgh, UK
Posts: 1,499
Default Re: exclude a category from the blog

Okay, open up page_blog.php and look for this line...

Code:
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=1&showposts=5&paged=$page"); while ( have_posts() ) : the_post() ?>
Change it to this...

Code:
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=1,-2&showposts=5&paged=$page"); while ( have_posts() ) : the_post() ?>
So what we're saying there is to show posts from category 1 and to ignore posts from category 2.

If you posts from all categories apart from category 2 then do this...

Code:
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=-2&showposts=5&paged=$page"); while ( have_posts() ) : the_post() ?>
__________________
Some of the websites I've built with StudioPress:
<a href="http://www.horseracing.fm">Horse Racing</a> | <a href="http://wedding-blog.net">Wedding Blog</a> | <a href="http://www.weddingtrix.com">Wedding Planning Guide</a> | <a href="http://advance.to">Search Engine Marketing</a> | <a href="http://www.automateyourprofits.com">Betting Software</a> | <a href="http://www.bettingbots.com">Betting Bots</a> | <a href="http://www.pokerclubscotland.com">Poker Club Scotland</a>
 

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
Exclude a category from de category widget bassili General Discussion 1 07-06-2010 08:40 PM
exclude blog page category s2aebelt General Discussion 3 10-09-2009 11:23 AM
Exclude Category? S3vEn General Discussion 14 11-22-2008 11:49 AM


All times are GMT -5. The time now is 07:10 AM.

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