Paginação – Página 2 não funciona
-
Pessoal…
Estou com um problema, se alguém puder me auxiliar…
Bem, a paginação é mostrada no blog, entretanto o link página 2 ao ser clicado, não acontece nada, continua mostrando os mesmos posts…
Segue código:<?php /* Template Name: Blog */ ?> <?php get_header(); ?> <div id="content"> <?php if(have_posts()) while(have_posts()) : the_post(); ?> <div id="post-<?php the_ID(); ?>" class="entry"> <div class="thumbnail"><?php the_post_thumbnail('full'); ?></div> <h1 class="title"><?php the_title(); ?></h1> <div class="content page"> <?php the_content(); ?> <?php wp_link_pages(array('before' => '<div class="page-link">'.__('Pages', 'cpotheme').':', 'after' => '</div>')); ?> </div> </div> <?php endwhile; ?> <?php if(get_query_var('paged')) $current_page = get_query_var('paged'); else $current_page = 1; ?> <?php query_posts("post_type=post&paged=$current_page&posts_per_page=4"); ?> <?php if(have_posts()): $feature_count = 0; ?> <div class="previewlist"> <?php while(have_posts()): the_post(); ?> <?php if($feature_count % 2 == 0 && $feature_count != 0) echo '<div class="separator"></div>'; ?> <?php $feature_count++; ?> <div class="preview<?php if($feature_count % 2 == 0 && $feature_count != 0) echo ' preview_second'; ?>" id="post-<?php the_ID(); ?>"> <?php if(has_post_thumbnail()): ?> <div class="thumbnail"> <a href="<?php the_permalink(); ?>" title="<?php printf(esc_attr__('Permalink to %s', 'cpotheme'), the_title_attribute('echo=0')); ?>" rel="bookmark"> <?php the_post_thumbnail('portfolio'); ?> </a> </div> <?php endif; ?> <div class="date"><strong><?php echo get_the_date('d'); ?></strong><br /> <?php echo get_the_date('M'); ?></div> <h2 class="title"> <a href="<?php the_permalink(); ?>" title="<?php printf(esc_attr__('Permalink to %s', 'cpotheme'), the_title_attribute('echo=0')); ?>" rel="bookmark"><?php the_title(); ?></a> </h2> <div class="byline"> <div class="author"><?php cpotheme_post_author(); ?></div> <div class="category"><?php cpotheme_post_categories(); ?></div> <div class="comments"><?php cpotheme_post_comments(); ?></div> </div> <div class="content"> <?php the_excerpt(); ?> <br /> <a class="readmore" style="font-weight: bold;" href="<?php the_permalink(); ?>"><?php _e('Leia mais...', 'cpotheme'); ?></a> </div> </div> <?php endwhile; ?> </div> <?php endif; ?> <?php cpotheme_post_pagination(); ?> </div> <?php get_footer(); ?>
Visualizando 2 respostas - 1 até 2 (de um total de 2)
Visualizando 2 respostas - 1 até 2 (de um total de 2)
- O tópico ‘Paginação – Página 2 não funciona’ está fechado para novas respostas.