Forum Replies Created

Viewing 1 replies (of 1 total)
  • I think that my question is the same, but I’m not sure. I tried your solution greenshady and I think I did something wrong! I was trying to get the sidebar with the blogroll and such off of each “post”, while still leaving it on my other pages (about and overall view). Any ideas?

    Unless the call to your sidebar isn’t in the page template. I’ve never put this in any of my themes. I’ve always called it in the footer.

    You can always find the call for the sidebar which should be:

    get_sidebar();

    Then you could do this:

    if(is_page(‘Page Name’)) :
    else :
    get_sidebar();
    endif;

Viewing 1 replies (of 1 total)