• Hi, I want to display all posts from all categories and with pagination.
    I created a new page using the file with the desired template and inside the file I’ve put this code:

    <ol>
          <?php
    	  query_posts(array('category__not_in' => 552,'posts_per_page' => 10, 'orderby'=>title, 'order'=>ASC));
           if (have_posts()):
            while (have_posts()):
             the_post();
    		?>
             <li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent Link:','mystique'); echo ' '; the_title_attribute(); ?>"><?php the_title(); ?></a></li>
    		 <?php
            endwhile; ?>
    </ol>

    It displays correctly, 10 posts ordered by title ascendent but the pagination is not correct because when I click the next page it will take me to index (home page); it doesn’t displays the next page.

  • The topic ‘Display all posts from all categories with pagination’ is closed to new replies.