• Is there a way to add an additional page for posts? In other words, a separate blog page where I could blog on my site about a spedific topic that was separate from first set of posts? I am using the first blog posts as a list of events for our members. We are a non-profit organization

Viewing 2 replies - 1 through 2 (of 2 total)
  • Categories do a pretty good job of separating out posts by topic. Each category also comes with its own page to show only its posts. If you want to exclude your new category from showing on the main page there are lots of different ways of handling that.

    The most common is to place the below right after your loop starts:

    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <?php if (in_category('3')) continue; ?>

    where ‘3’ = the id of the category you want to exclude.

    Are you sure about the categories? I have several different posts on both of my blogs (completely different websites) and it definitely doesn’t create a separate page for each category and I can’t seem to find any options for it anywhere in the admin backpage.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add an additional page of posts’ is closed to new replies.