page nav not showing up
-
I am using a theme called ‘FreeDream’ and I believe I should add the <?php wp_link_pages( … ); ?> or <?php wp_pagenavi(); ?> somewhere here:
<?php get_header(); ?> <div id="content"> <div id="left"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="pages"> </div> <article id="article"> <header id="titre"> <h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1> <pre><time datetime="<?php the_time('j F Y') ?>"><?php the_time('j F Y') ?></time> - by <?php the_author() ?></pre> </header> <section> <?php the_content('<p>Read this article ?</p>'); ?> <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> </section> <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> In: <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No comments ?', '1 comment ?', '% comments ?', 'comments-link', 'Comments are closed'); ?></p> </article> <div class="pages"> <div class="left"><?php previous_post_link('? %link') ?></div> <div class="right"><?php next_post_link('%link ?') ?></div> </div> <?php comments_template(); ?> <?php endwhile; else: ?> <article id="article"> <header id="titre"> <h1>404 Error</h1> </header> <section> <p>Sorry, no posts matched your criteria.</p> <?php get_search_form(); ?> </section> </article> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Can someone help me?? I treid everything but it doesn’t seem to do anything!!
Thanks in advance!
- The topic ‘page nav not showing up’ is closed to new replies.