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

    (@astonlife)

    ALSO, if anyone knows… my admin page is super slow, I have to refresh it twice for everything to work?? im not sure if its because my theme is so old and doesn’t offer support anymore?

    how can i show my side bar ONLY on the blog not the pages?

    if the theme has a page.php, remove the call of the sidebar (<?php get_sidebar(); ?> ?) there; then tweak the css to center the content or fill the available space.

    if the theme does not have a page.php, wrap the call of the sidebar into a conditional statement;
    example:

    <?php if( !is_page() ) get_sidebar(); ?>

    unless the theme uses body_class(), finding any page specific css class for tweaking the formatting might be a problem.

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