Link to archive page on single post
-
My blog archive is paginated and I want a link on single posts back to the archive parent page.
I have this and it’s working, sort of…
function back_to_parent_archive() { $url = htmlspecialchars($_SERVER['HTTP_REFERER']); echo "<p><a href='$url'>Back to main page</a></p>"; }
The problem is if you’re on a single post and start using next/previous navigation between posts, because the above function is essentially a browser back button.
So, is it possible to generate a link back to parent archive page regardless of which post you’re on?
Thanks
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Link to archive page on single post’ is closed to new replies.