Archived topic
Duplicating Post Navigation Links
3 replies · Started by Ian on January 12, 2021
Is there a way to add a second set of post navigation links on the single post page? I was wanting to have the second set show up below the comments in addition to the ones that show up at the end of the post.
Hi Ian,
We can achieve this by using a Hook element.
https://docs.generatepress.com/article/hooks-element-overview/
Choose generate_after_main_content as Hook.
Add this code in content field, make sure you check the Execute PHP box.
<?php
if ( function_exists( 'generate_content_nav' ) ) {
generate_content_nav( 'nav-below' );
}
?>
Let me know :)
Worked perfectly - thanks very much!
No problem!