Problem with Pagination on loop
-
I wrote this code in category.php:
if(have_posts()) : while(have_posts()) : the_post(); ?> <div class="card-post"> <?php the_post_thumbnail(); ?> <span><?php the_date(); ?></span> <a href="<?php the_permalink(); ?>"><h2><?php the_title(); ?></h2></a> <div class="btn-azul"><a href="<?php the_permalink(); ?>" >Leia mais</a></div> </div> <?php endwhile;?> </div> <?php echo paginate_links(); else: echo "Nenhum post foi encontrado"; endif; ?>
But nothing is showing on page ?? Please, help me …
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Problem with Pagination on loop’ is closed to new replies.