Wordpress Logo

Post Navigation (index.php)

Um eine Navigation durch alle Posts zu ermöglichen:

<?php the_posts_pagination( array(
    'mid_size'  => 2,
    'prev_text' => __( 'Back', 'textdomain' ),
    'next_text' => __( 'Onward', 'textdomain' ),
) ); ?>

Quelle: https://developer.wordpress.org/reference/functions/the_posts_pagination/