• I’ve upgraded to 1.5 and can’t seem to get my 2nd sidebar up and running. It was working fine with 1.2.

    In my footer I have the following that calls the sidebar,
    <?php get_sidebar(); ?>

    So far I’ve tried leaving it just how I had it, where right after that I called <?php get_sidebarleft(); ?> but that doesn’t work now.

    I also tried using <?php include (‘sidebarleft.php’); ?>
    but it didn’t help either.

    I’m using the classic theme that came with WP. Any ideas?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Well, the classic doesn’t have a 3rd column. It definitely won’t work with the get_sidebarleft because that function is not defined in WP. It should work with an include, though in vesuvius I use this:
    <?php include (TEMPLATEPATH . '/leftbar.php'); ?>
    [you should change it to “sidebarleft.php]
    The other thing is I am calling it before the content starts.

    Thread Starter splunk

    (@splunk)

    Sweet moshu, thank you so much. Back up and running ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can’t get 3rd column up’ is closed to new replies.