treehouse : what would you like to learn today?
Web Design Web Development iOS Development

[Solved] Pagination and Next Post problem

  • Hello,

    I cannot get my next post link to show up and the pagination appears to be not working properly

    <?php

    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    query_posts("posts_per_page=2&cat=10&paged= . $paged");

    if (have_posts()) : while (have_posts()) : the_post(); ?>

    <div class="content">

    <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
    <p><?php the_content(); ?></p>

    </div>

    <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>


    <?php wp_reset_query(); ?>


    <?php endwhile; endif; ?>
    <?php next_posts_link('Older News'); ?>