Previous/Next post link not visible

Hello,
I don’t see next/previous page/post/site links on my test site.
My theme is without any changes yet, cloned from github. Installed on localhost.
I know where it should be, got it in code (wp_link_pages), but it not appear on the site.
Any ideas why?

wp_link_pages() outputs links for paginated posts (when you want to break a single post into several sub-pages).

I think you might have meant the_posts_navigation(), which gives the links for the next set of posts (with the number of posts per page determined by the “Blog pages show at most” setting at wp-admin/options-reading.php.

Be sure that you have more published posts than this setting, otherwise the_posts_navigation() outputs nothing.

That was it. Thank you :slight_smile: