Advertisement
Guest User

WordPress: Loop - PageNavi (WordPress Forum)

a guest
Sep 19th, 2014
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2.     // Problema apresentado no Fórum Oficial do WordPress em http://br.forums.wordpress.org/topic/paginacao-nao-e-feita-no-index-com-o-pagenavi
  3.            
  4.     $portfolio = new WP_Query( array('category_name' => 'portfolio', 'posts_per_page' => 5, 'paged' => get_query_var('paged') ) );
  5.                    
  6.     if ( $portfolio->have_posts() ) :
  7.         while ( $portfolio->have_posts()) : $portfolio->the_post();?>
  8.         <a href="<?php the_Permalink();?>" title="<?php the_title();?> - Paulo Mendes | Fotografia" class="a_posts">
  9.         <div class="posts">
  10.         <div class="posts_foto">
  11.         <div class="titulo_img">
  12.         <div class="titulo2">
  13.         <?php the_title();?>
  14.         </div>
  15.         </div><!-- FECHA_CLASS_TÍTULO -->
  16.                                                
  17.         <?php if(has_post_thumbnail( )): ?>
  18.         <?php the_post_thumbnail('featured'); ?>
  19.         <?php else: ?>
  20.         <img alt="<?php the_title(); ?>" src="<?php bloginfo('template_directory'); ?>/img/sem-thumbnail.jpg" />
  21.         <?php endif; ?>
  22.                                                
  23.         </div><!-- FECHA_CLASS_POSTS_FOTO -->
  24.                                            
  25.         <span class="titulo_posts"><?php the_title();?></span>
  26.                                            
  27.         <?php the_excerpt(); ?>
  28.                                            
  29.         </div><!-- FECHA_ID_POSTS -->
  30.         </a>
  31.         <?php endwhile; ?>
  32.                            
  33.         <div class="paginator">
  34.                                
  35.         <?php wp_pagenavi( array( 'query' => $portfolio ); ?>
  36.                                
  37.         </div><!--DIV_CLASS_PAGINATOR -->
  38.                            
  39.     <?php else:?>
  40.     <?php endif;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement