• I use iNove. I made sidebar 2.
    The code in the footer which call sidebar is

    </div>
    <!– main END –>

    <?php get_sidebar(); ?>
    <div class=”fixed”></div>
    </div>
    <!– content END –>

    <?php include(‘templates/end.php’); ?>

    How can I call sidebar 2 for certain pages?

    And can I add widgets for only one sidebar?

Viewing 8 replies - 1 through 8 (of 8 total)
  • <?php include(TEMPLATEPATH . '/end.php'); ?>

    <?php get_sidebar(); ?>

    mg – that’s the call for the regular sidebar. He’s wanting to know how to call in a *second* sidebar – different php file.

    Thread Starter kjagen

    (@kjagen)

    Yes what`s the code going to be like

    or

    is it possible to get a second ( and 3,4) to show up in the dashboard, so you can add things the more than one sidebar?

    Thread Starter kjagen

    (@kjagen)

    I tried changing it but ended up with an all white dashboard and site…uploaded the page again and back to normal,
    but still don`t now how to register sidebars.
    I use iNove, and all I get in the place where you choose which sidebar to add widgets to is, north, west, east and south. Is sidebar 2 supposed to show uo here if i do that function thing correct??

    Here are some function code

    /** widgets */
    if( function_exists(‘register_sidebar’) ) {
    register_sidebar(array(
    ‘name’ => ‘north_sidebar’,
    ‘before_widget’ => ‘<div id=”%1$s” class=”widget %2$s”>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<h3>’,
    ‘after_title’ => ‘</h3>’
    ));
    register_sidebar(array(
    ‘name’ => ‘south_sidebar’,
    ‘before_widget’ => ‘<div id=”%1$s” class=”widget %2$s”>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<h3>’,
    ‘after_title’ => ‘</h3>’
    ));
    register_sidebar(array(
    ‘name’ => ‘west_sidebar’,
    ‘before_widget’ => ‘<div id=”%1$s” class=”widget %2$s”>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<h3>’,
    ‘after_title’ => ‘</h3>’
    ));
    register_sidebar(array(
    ‘name’ => ‘east_sidebar’,
    ‘before_widget’ => ‘<div id=”%1$s” class=”widget %2$s”>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<h3>’,
    ‘after_title’ => ‘</h3>’
    ));
    }

    I don’t know “iNove”. If you add the right funtion to your file, then yes, the sidebar 2 will show up in the widgets dropdown.

    If you got a blank white page, you had an error – probably a misplaced ; or something. Your error logs will tell you what you did wrong.

    Kjagen, I do not use Inove, but this page proved to be very useful to me:

    https://brolly.ca/blog/wordpress/add-multiple-wordpress-widget-sidebar/

    I didn’t have to bother with creating new sidebar.php files, and it worked exactly as “advertised” with our WordPress install.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Sidebar 2. How can I call this?’ is closed to new replies.