• Resolved York

    (@york)


    Greetings all. I’m brand-new to WordPress, so I’d like to get your advice on the best method to integrate it into my site.

    I’d like my index/homepage to be a blog, but I’d also like to have a secondary tier of 6 blogs (learn, look, play, read, share, and shop), and even a few tertiary blogs, in addition to a number of non-blog pages.

    I’d like maximum capabilites (such as a single search for all blogs) with minimum complexity (ideally, a single administrative interface for publishing content to all those blogs.)

    So, the question for you experienced Pressers is: what’s the best method to achieve my goal? Thanks in advance.

Viewing 9 replies - 1 through 9 (of 9 total)
  • I would maybe check out the multiple user version of wordpress, wordpressMU for starters.

    https://mu.www.ads-software.com

    That might be more of a solution for you as it can handle multiple blogs. There are hacks to get wordpress to do somewhat of the same, but that is the most efficient.

    Trent

    I, personally, would lean towards doing as much of that with categories. WP has category views built-in. That would give you the ability to search across all (which MU won’t).

    That is true Handy and be the best solution if the content doesn’t have to be separated. I never really thought in terms of the easy solution. lol

    Trent

    Running multiple blogs on one site is easy if you can learn some htaccess rewrites.

    For example:

    RewriteCond %{HTTP_HOST} ^www\.site1\.net$ [NC,OR]
    RewriteCond %{HTTP_HOST} ^site1\.net$ [NC]
    RewriteCond %{REQUEST_URI} !^/site1/.*$
    RewriteRule ^(.*)? /site1/$1 [L]
    RewriteCond %{HTTP_HOST} ^www\.site2\.com$ [NC,OR]
    RewriteCond %{HTTP_HOST} ^site2\.com$ [NC]
    RewriteCond %{REQUEST_URI} !^/site2/.*$
    RewriteRule ^(.*)? /site2/$1 [L]

    As for how to set up WordPress to take advantage of this, see https://www.clearpointsystems.com/ewpi.php

    And will that handle the need to easily search across all articles?

    Not without additional custom code…

    Thread Starter York

    (@york)

    Thanks all for your input.

    Can categories be used to publish postings to different pages?

    For example, can I send a posting to the ‘look’ page on my site by marking it as belonging to the ‘look’ category, while sending another posting to the ‘read’ page by assigning it to the ‘read’ category?

    Can categories be used to publish postings to different pages?

    Wrong terminology, but yes — same result.

    You have category “views” of your posts. You can use Category_Templates in your theme to style them differently.

    By default, posts of all categories show up on the blog main page. However, there are plugins to control that as well.

    Thread Starter York

    (@york)

    Thanks to HandySolo and my fellow members for their assistance. I am now using categories with a single WordPress server installation, and it’s met the needs I stated in my original posting.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Advice? Multiple Blogs on a Website’ is closed to new replies.