I want to make some posts only to a certain category. I don't want the posts to apear on the main page.
How can I do it?
Please help me.
Thank you
I want to make some posts only to a certain category. I don't want the posts to apear on the main page.
How can I do it?
Please help me.
Thank you
Use a plugin such as http://wordpress.org/extend/plugins/simply-exclude/
It really depends on how the theme you are using is set up. The DIY Thesis Theme (I use) allows you to pick just the category you want. It is really worth it to get a pro theme!
And it's easy enough to change a theme's template, to something like this to exclude category 9, <?php query_posts($query_string . '&cat=-9'); ?>
placed before a line similar to <?php if (have_posts()) : ?>, but the plugin is an easy answer for almost any theme.
Thank you
This topic has been closed to new replies.