• Resolved Nexxoz

    (@nexxoz)


    Im haveing trobble with Pagination, the links dosent work

    http://www.draw-gaming.com/articles

    Theme file page-articles.php

    <?php get_header(); ?>
    
    <div class="container">
      <div class="row">
        <div class="col-lg-12">
        <div class="well">
          <?php
    
          $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    
          query_posts(array(
            'post_type'      => 'post', // You can add a custom post type if you like
            'paged'          => $paged,
            'posts_per_page' => 1
          ));
    
          if ( have_posts() ) : ?>
    
          <?php while ( have_posts() ) : the_post(); ?>
    
          <?php the_title(); ?> 
    
          <?php endwhile; ?>
            <?php echo '<br><br>'; ?>
    
            <?php twentytwelve_content_nav(); ?>
    
          <?php else : ?>
    
                  <?php // no posts found message goes here ?>
    
          <?php endif; ?>
          </div>
        </div>
      </div>
    </div>
    
    <?php get_footer(); ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Pagination not working on news page’ is closed to new replies.