How to create pagination on archive.php template
The solution was surprisingly simple as you can see below. Thanks for your help @Sally CJ and @Tom J Nowell. <?php get_header(); ?> <!– PAGE INTRODUCTION –> <div class=”container”> <h1 class=”page_title”><?php the_archive_title(); ?></h1> </div> <!– PAGE CONTENTS –> <div class=”container”> <div class=”row”> <!– POSTS –> <?php if ( have_posts() ) : while ( have_posts() ) … Read more