• my wordpress website starts with an static page.
    On that static page (intro) i have a sidebar with:
    1. Search
    2. Latest News
    3. Links
    4. Meta

    On other pages i want the have another sidebar with
    1. Search
    2. Pages
    3. Links
    4. Meta

    I use the theme Mandigo.

    Can i choose at making an new page for another sidebar?

Viewing 2 replies - 1 through 2 (of 2 total)
  • in sidebar.php, add some code

    if (is_front_page() {

    … code to display your home page sidebar

    } else {

    … code to display the other pages sidebar

    }

    OOPS – code should be

    <?php if ( is_front_page() ) {

    … code to display your home page sidebar

    } else {

    … code to display the other pages sidebar

    } ?>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing Sidebar’ is closed to new replies.