Viewing 4 replies - 1 through 4 (of 4 total)
  • In your singel.php file you have to rule the sidebar out as well. This wil do the trick. You can also do that in your page.php

    Thread Starter mimmson

    (@mimmson)

    Thank you. Heres what I have on page.php Not sure what you mean rule out?

    <?php get_header(); ?>

    <div id=”content”>

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class=”post” id=”post-<?php the_ID(); ?>”>
    <h2><?php the_title(); ?></h2>

    <?php the_content(‘Read the rest of this page’); ?>
    <?php link_pages(‘Pages: ‘, ”, ‘number’); ?>

    </div>
    <?php endwhile; endif; ?>
    <?php edit_post_link(‘Edit this page.’, ”, ”); ?>
    </div>

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>

    <?php get_sidebar(); ?>

    Nah, I dont know myself. The point is that in singel.php your sidebar is or not mentiont, or has de <!-- --> by the code to get the sidebar.

    Okay, I checkt it out on your site, and the sidebar is not mentiont in your single.php

    go ahead

    Thread Starter mimmson

    (@mimmson)

    Thanks! That brought in part of it. Not sue where the rest is.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘My Houdini Sidebar Contents’ is closed to new replies.