• Hello. I have run a blog using CutePHP for a few years now. However I will be expanding what I wish to do with my site to the point where CutePHP will no longer work for me. I was advised to use WordPress because one of the tech’s of my site is using it for the web comic our partner is running. However he is not very familiar with it beyond this. He advises I seek my answers here.

    Please note I did searches in the docs for quick simple yes or no answers to some of these questions and sadly have come up empty handed or confused. WordPress has many terms and items that is unique to it, and though I may be able to navigate through tech stuff I am not an expert.

    Here is a summary of my questions:

    1. Can I make multiple “sections” for WordPress for several different blogs? I.e. a personal blog and a “work/hobby” blog. To which each will have its own categories separate from the other.
    2. Can I have a different username/poster that is seen by the public for each section under the same login?
    3. Can each section have its own theme?
    4. Do I need to install multiple instances of WordPress in order to accomplish these items?

    For some of my other questions I am discovering through trial and error and finding when I am looking for something else. I have to say that the docs section is extremely overwhelming to some, especially as I am short on time I can sit at a PC (and printing isn’t convenient for me right now either)

    Thank you for your time!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter neffster

    (@neffster)

    Ok after some looking around I may have answered some of my own questions. However some items remain a mystery. In a nutshell I would like to manage the content of 2 sites with one WordPress install, each site has its own look, contact info et cetera. But one CMS login. Working through my questions slowly but surely.

    Well, the answers for your first post are
    1.yes
    2.conditional yes/no*
    3.yes
    4.no

    1. It’s fairly easy to set up different categories and different styles to them in WP. It’s really up to you how you want your content. You have to read up on that in the codex.wordpress.com

    2.*I’m not sure about the user, but you could have
    “your name”
    “Your Name”
    “YOUR NAME”
    etc

    3.No problems. Create a page for each category or simply put something like this in your header.php:

    ‘<?php if ( in_category(‘3’) ){ ?>
    <link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_directory’); ?>/style-one.css” type=”text/css” media=”screen” />
    <?php } elseif ( in_category(‘4’) ) { ?>
    <link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_directory’); ?>/style-two.css” type=”text/css” media=”screen” />
    <?php } ?>’

    I was new to WP a few months ago too ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Seeking Answers on Multiple Blogs under one Install’ is closed to new replies.