check your pages.php file, you might have something messed up in there. if you don’t have a pages.php file, then you might want to create one
Thread Starter
zhoue
(@zhoue)
how would i go about doing so? the original template didn’t come with a pages.php….?
btw, your site is cool, how did you manage to separate the posts into different sections?
hmm take a look here
http://codex.ww.wp.xz.cn/Pages
and see if you can piece it together. It’s basically just taking your index.php in your themes and gutting your content to show what you want it to.
As far as my site and separating posts into different sections, i’m not sure what you mean? if you have multiple posts, there should naturally be a space between each post.
Thread Starter
zhoue
(@zhoue)
I’m sorry, i was unclear. I meant it was nice how you had different sections for posts, images, etc. I tried to do that with my entire domain, but I couldn’t get it to configure.
Thanks a lot for the help, I will analyze the link.
ah ok, heh yea, that was all done with the use of pages. The images was a little different, but if you’re using Gallery, then I can help you out with that.
this is my pages.php file.
`<?php
/* Don't remove this line. */
//require('./wp-blog-header.php');
?>
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post">
<div class="entrytext">
<?php the_content('<p class="serif">Read the rest of this page »'); ?>
<?php link_pages('Pages: ', '', 'number'); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link('Edit this entry.', '', ''); ?>
</div>
<?php get_sidebar(); ?>
<div id="clearer"> </div>
<?php get_footer(); ?>
</div>
</div>
</body>
</html>'
Thread Starter
zhoue
(@zhoue)
Thanks for your help. I have my pages sorted out (kind of ^^;) now.