• I’ve installed a new WordPress blog but I haven’t committed to moving 10 years worth of Blogger posts over to the new system quite yet. One of the few questions I still have is as follows:

    I don’t want to maintain multiple blogs, but on the same domain I’d like to “filter” my blog content to possibly display different content in different sections of my website, as if they were actually separate blogs. For instance, I may like to have my main blog display all my posts, but I’d like to display only posts that I’ve identified as being related to my profession in the professional section of my website (same domain but a different location), and only display family related posts in the personal section of my website. I suppose this begs two questions then. One, can blog posts be displayed in multiple locations on the same domain. And two, can a blog be filtered to only display specific posts, possibly using the Categories function?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • So a basic understanding of archives should address your question.

    Don’t be confused by what an archive is–it is just a generated display of your posts at that moment. You don’t do anything to create the archive, that’s an automatic thing WordPress does for you. Usually, archives are date, category, tag, or author, based.

    Access to archives is typically presented via links in a sidebar under an Archive (date based), Category, or Tag Cloud, headings. Widgets, or Template Tags such as wp_get_archives(), wp_list_categories(), wp_tag_cloud(), and wp_list_authors(), are the constructs used to present links to users to visit your various archives. The process of placing code in your Theme’s Templates is explained in Stepping Into Templates and Stepping Into Template Tags.

    Once a user clicks on a Category link in the sidebar, the display of those posts can be controlled by a Category Template. Other Templates, such as Author Templates, and Tag Templates, are available if you set them up. These Templates can be coded via Template Tags such as the_title(), the_content(), or the_excerpt(), to display just a post title, the full content of the post, or just an excerpt of the post.

    Also, it is important to understand the Template Hierarchy, as that is how WordPress determines what Template to use to render the posts for reading by your readers.

    If a user visits a Category archive, then clicks on a given post title in that Category archive, the display of that single post is again presented by another Template, and again, the Template Hierarchy determines what Template displays that single post. Finally, that single post Template can be coded to display just the title, the full post content, or an excerpt.

    Thread Starter gopanthers

    (@gopanthers)

    Wow that sounds confusing… but that’s okay because it also sounds like it is indeed possible to do what I want, as well as many other things too. It’ll just take me time to learn how the system works so I can tweak it the right way. Thanks for detailed reply.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can I use categories to “split” content to appear as different blogs?’ is closed to new replies.