<?php $populargb = new WP_Query('showposts=5' ); while ( $populargb->have_posts() ) { $populargb->the_post(); ?> <li> <a href="<?php the_permalink(); ?>"> <div class="blog__list__img"> <?php the_post_thumbnail(); ?> </div> <div class="blog__list__content"> <h2 class="blog__list__content__h2"><?php the_title() ?></h2> <p class="blog__list__content__description"><?= get_the_excerpt(); ?></p> <span class="blog__list__content__date"><?php the_time("j FY") ?></span> </div> </a> </li> <?php } ?> Good day. I have this code. And I tried to do pagination, but he didn’t remove it from me. Generally even page numbers. Tell me how to add pagination?