• Hi I would like to find out how I can set up multiple blog pages on my wordpress website.

    I would like to change some of my static pages into blog pages like how the front page works. Is this possible? If so how?

    Any plugins which can assist me?

    I want to have multiple users putting their blogs on my site and assigning them separate pages.

    Here is the site.

    http://fighttourist.com

    Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You could use categories to do that and then let the native category archive process handle the display of the posts.

    But if you want to actually create Pages and have posts belonging to a certain category display on a certain page, then review the Page of Posts example in the Pages article.

    Also you might find this techinique interesting:
    How to easily display links to both Pages and Categories in the blog navigation header?

    I have the same question Oeshon.. but I’d like have the posts sorted to the different Pages by a post category instead of user. I found this on how to display posts in a Page and I’m wondering if there’s a way to add a category qualification to the query so that template will find “News” posts and I can use it on a “News” Page.

    Oeshon you might want to look into this method. I’m new to php stuff and don’t have it figured out but it seems to target the solution you’re looking for.

    Here’s how to query posts by a category:

    <?php query_posts('category_name=news&showposts=5'); ?>
    <?php while (have_posts()) : the_post(); ?>
    <?php the_content(); ?>
    <?php endwhile; ?>
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Multiple Blog pages in WordPress possible?’ is closed to new replies.