Guest User

Untitled

a guest
Jun 20th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. /* PAGINAÇÃO WORDPRESS */
  2.  
  3. $big = 999999999;
  4.  
  5. echo paginate_links( array(
  6. 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
  7. 'format' => '?paged=%#%',
  8. 'current' => max( 1, get_query_var('paged') ),
  9. 'total' => $wp_query->max_num_pages
  10. ) );
  11. }
  12.  
  13. pagina category
  14.  
  15. <?php get_header(); ?>
  16.  
  17. <h3 class=" text_9 color_9"> <center>Blog Meu Lar</center></h3>
  18. <center><?php wordpress_pagination(); ?></center> <-- essa função está com o problema não aparece!
  19.  
  20. <div class="tab-content minha-conta">
  21. <div role="tabpanel" class="tab-pane active " id="lateral">
  22.  
  23. <div class=" caption text_8 "><h4>
  24. <?php
  25. if ( is_active_sidebar('lateral') ) {
  26. dynamic_sidebar('lateral');
  27. }
  28. ?></h4>
  29. </div>
  30.  
  31. </div>
  32. </div>
  33.  
  34. </div>
  35.  
  36. Por gentileza se alguém souber oque está errado eu fico muito grato!
Add Comment
Please, Sign In to add comment