Title: Missing navigation links
Last modified: October 2, 2020

---

# Missing navigation links

 *  [AJB Ferreira](https://wordpress.org/support/users/op351net/)
 * (@op351net)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/missing-navigation-links/)
 * Very nice this theme, almost fully working on WP 5.5.1! Nice page navigation 
   also in the blog pages. However… Where are the navigation links below the post
   in single post mode??? Those “previous/next” links should dinamically show up
   at the end of every the post, right?
 * Any help?
    -  This topic was modified 5 years, 8 months ago by [AJB Ferreira](https://wordpress.org/support/users/op351net/).
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fmissing-navigation-links%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 9 replies - 1 through 9 (of 9 total)

 *  [akhlesh-nagar](https://wordpress.org/support/users/akhlesh-nagar/)
 * (@akhlesh-nagar)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/missing-navigation-links/#post-13486615)
 * Hi
    Thanks for contacting to us. We have little confusion regarding your issue.
   Pls more clear about your query, So that we can assist you better. Are you want
   navigation on single [post page. ](https://op351.net/show-contents-by-time/)
 * Thanks
    Akhilesh
 *  Thread Starter [AJB Ferreira](https://wordpress.org/support/users/op351net/)
 * (@op351net)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/missing-navigation-links/#post-13486993)
 * Yes, that’s the normal way in many other themes. Have a look at this example:
 * [navigation links next/previous at bottom of page, before footer](https://zb.op351.net/sim-chef-ganda-noia/)
 * Got it? This is very useful when you’re reading posts one by one and wish to 
   continue reading, the next or the previous post…
 *  [akhlesh-nagar](https://wordpress.org/support/users/akhlesh-nagar/)
 * (@akhlesh-nagar)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/missing-navigation-links/#post-13489073)
 * Hi
    For this simply follow the given below instruction. 1 Find the **single.php**
   file located in your theme folder. 2 Open it and replace the code of it with 
   the code mention in this [link.](https://pastebin.com/72gcN5cZ)
 * Let us know for any confusion.
 * Thanks
    -  This reply was modified 5 years, 8 months ago by [akhlesh-nagar](https://wordpress.org/support/users/akhlesh-nagar/).
 *  Thread Starter [AJB Ferreira](https://wordpress.org/support/users/op351net/)
 * (@op351net)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/missing-navigation-links/#post-13495613)
 * Thank you for your reply.
 * Is that code a temporary workaround? Will you include this in your next release?
   At least as an option in the Customize area. That would be very fine…
 * UPDATE: code in given link doesn’t work…
    -  This reply was modified 5 years, 8 months ago by [AJB Ferreira](https://wordpress.org/support/users/op351net/).
 *  [akhlesh-nagar](https://wordpress.org/support/users/akhlesh-nagar/)
 * (@akhlesh-nagar)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/missing-navigation-links/#post-13496436)
 * Hi [@op351net](https://wordpress.org/support/users/op351net/)
    Thanks for your
   suggestion, I will discuss about this feature with our technical and let you 
   know. I have checked your singe post and next and previous link showing perfectly.
   See the snapshot [https://prnt.sc/utujzw](https://prnt.sc/utujzw) [https://op351.net/alterar-conta-de-acesso/](https://op351.net/alterar-conta-de-acesso/)
   If still you have confusion feel free to contact us. Thanks
 *  Thread Starter [AJB Ferreira](https://wordpress.org/support/users/op351net/)
 * (@op351net)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/missing-navigation-links/#post-13496896)
 * Thank you for your reply.
 * The links you see in my single post page are not the result of your code. Again,
   your code doesn’t work! I’ve decided to include my own code to generate links.
   I may send it to you if you wish a proper code for this function…
 * A suggestion for your next release: give user possibility of choosing links before
   posts, after or both.
 * Finally, “If still you have confusion feel free to contact us.” ????? Who’s confused
   here?
 *  [akhlesh-nagar](https://wordpress.org/support/users/akhlesh-nagar/)
 * (@akhlesh-nagar)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/missing-navigation-links/#post-13497381)
 * HI
    Thank you so much. Pls send me code you have used for next and previous link.
 * Thanks
 *  Thread Starter [AJB Ferreira](https://wordpress.org/support/users/op351net/)
 * (@op351net)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/missing-navigation-links/#post-13497836)
 * In single.php, after <?php get_sidebar();?> or maybe before cause I don’t use
   sidebar:
 *     ```
       <!-- OP351net -->
       <!-- Previous and Next Post -->
       <?php if( is_single() ) : 
       if( get_next_post() )
       	$next_visible = "display:block";
       else
       	$next_visible = "display:none";
       ?>
       <div id="nextpreviouslinks" style="width:100%;">
       	<div style="float:left;text-align:left;">
       		<span style="font-size:1.4em;font-variant:small-caps;">Older Post</span><br />
       		<i class="fa fa-arrow-left" aria-hidden="true"></i> &nbsp;<strong><?php previous_post_link('%link','%title'); ?></strong>
       	</div>
       	<div style="float:right;text-align:right;<?php echo $next_visible; ?>">
       		<span style="font-size:1.4em;font-variant:small-caps;">Newer Post</span><br />
       		<strong><?php next_post_link('%link','%title'); ?></strong> &nbsp;<i class="fa fa-arrow-right" aria-hidden="true"></i>
       	</div>
       </div>
       <?php endif; ?>
       <!-- /Previous and Next Post -->
       ```
   
 * It’s working but, obviously, needs improvements… You’re the designer, not me!
 *  [akhlesh-nagar](https://wordpress.org/support/users/akhlesh-nagar/)
 * (@akhlesh-nagar)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/missing-navigation-links/#post-13497965)
 * Hi
    Thanks for the code and suggestion. Thanks

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Missing navigation links’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/honeypress/2.5.2/screenshot.png)
 * HoneyPress
 * [Support Threads](https://wordpress.org/support/theme/honeypress/)
 * [Active Topics](https://wordpress.org/support/theme/honeypress/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/honeypress/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/honeypress/reviews/)

 * 9 replies
 * 2 participants
 * Last reply from: [akhlesh-nagar](https://wordpress.org/support/users/akhlesh-nagar/)
 * Last activity: [5 years, 8 months ago](https://wordpress.org/support/topic/missing-navigation-links/#post-13497965)
 * Status: not resolved