Adjusting # of posts in Titan Theme
-
I am trying to change the # of posts that appear on the main page.
What I have done thus far:
– Reading is set to 0 though 30+ posts are showing
– I can’t find a custom query posts code anywhere
– I’ve tried just hacking it with a plug-in, nothing.
– adding query posts to the existing code- nope.I haven’t made any drastic code adjustments that would affect anything.
Here is what is going on in the page.php , Here is the code from that
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h1 class=”pagetitle”><?php the_title(); ?></h1>
<div class=”entry page clear”>
<?php the_content(); ?>
<?php edit_post_link(__( ‘Edit’, ‘titan’)); ?>
<?php wp_link_pages();?>
</div><!–end entry–>
<?php endwhile; /* rewind or continue if all posts have been fetched */ ?>
<?php comments_template( ”, true); ?>
<?php else : ?>
<?php endif; ?>Any help would be much appreciated.
- The topic ‘Adjusting # of posts in Titan Theme’ is closed to new replies.