Delete sidebar from “pages”
-
I would like my pages to be blank, such that I can add whatever elements I like.
I found this site – http://kohayoga.org/
and am trying to replicate it, however am unable to get rid of the sidebar place holder http://www.aaronloringdavis.com
anyone have any ideas?
many thanks!
-
Why not use the same theme: Cutline Theme for WordPress — One Giant Leap for Mankind?
I am using the same theme…i just want to remove the side bar…
Hey mike! THanks for the leads. I really appreciate it.
Trouble is, there isn’t a get sidebar command in my page file?? I posted it below..
Any ideas?
<?php get_header(); ?>
<div id=”content_box”>
<div id=”content” class=”pages”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<div class=”entry”>
<?php the_content(‘<p>Read the rest of this page →</p>’); ?>
<?php link_pages(‘<p>Pages: ‘, ‘</p>’, ‘number’); ?>
</div>
<?php if (‘open’ == $post-> comment_status) { ?>
<p class=”tagged”>#comments”><?php comments_number(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?></p>
<div class=”clear”></div>
<?php } else { ?><?php } ?>
</div><?php endwhile; endif; ?>
<?php if (‘open’ == $post-> comment_status) { comments_template(); } ?>
</div>
</div>
<?php get_footer(); ?>
The topic ‘Delete sidebar from “pages”’ is closed to new replies.