• I’m just get_adjacent_post and trying to create navigation for prev/next post.

    My code is 100% perfect and working in my other themes. I’ve no plugins installed.

    The previous post link appears at last published post and links to 11th post, skipping the rest of published posts.

    And when I open 11th post. It skips the post and links back to last published post with Next Post Link.

    I’ve checked both post_meta and posts tables from phpmyadmin. There is no difference in posts. All are same.

    Rescue me please

Viewing 10 replies - 1 through 10 (of 10 total)
  • Could you post a link to your site?

    Thread Starter muhammadwaqas

    (@muhammadwaqas)

    Plesse check: http://bit.ly/14acOtd

    What theme are you using? According to 2 different tools I’m using, both are saying that is not even a wordpress site.

    Thread Starter muhammadwaqas

    (@muhammadwaqas)

    Its a custom theme based on bootstrap, currently under-developement. Its wordpress I swear 😀

    Have you tried to reinstall wordpress? When did you notice this? Did it work and it just stopped working? Are you saying you are using the exact same theme on other sites with no problem?

    Thread Starter muhammadwaqas

    (@muhammadwaqas)

    Yeah, actually I reinstalled wordpress 3 times. I noticed it after posting. It didn’t work well even for once.

    No, I’m not using this theme at any other site. Also my functions.php has nothing but just few functions. eg;
    Post Thumbnail Support
    Widgetized sidebar
    Register Footer widgets, That’s it.

    I treid with empty functions.php too but still not success. Also I tried my other themes in which get_adjacent_post is 100% working but on this installation the responded they same way 🙁

    Why don’t you post the code so we can see what it looks like? The issue may be in that since obviously something is wrong. Is it possible that the posts are in different categories? http://codex.wordpress.org/Function_Reference/get_adjacent_post

    Thread Starter muhammadwaqas

    (@muhammadwaqas)

    Here is the code, Thank you.
    No, the posts are in same category “Uncategorized”

    <?php
    $prev_post = get_adjacent_post(false, '', true);
    $next_post = get_adjacent_post(false, '', false); ?>
    
    <?php if ($prev_post) : $prev_post_url = get_permalink($prev_post->ID); ?>
    <span class="prev"><a href='<?php echo $prev_post_url; ?>' rel='prev'>›</a></span>
    <?php endif; ?>
    
    <?php if ($next_post) : $next_post_url = get_permalink($next_post->ID); ?>
    <span class="next"><a href='<?php echo $next_post_url; ?>' rel='next'>‹</a></span>
    <?php endif; ?>

    That code seems to be working on a test environment for me so I’m not sure that the code is the issue. It must be something in the theme that is causing it if your not using any plugins.

    Was there ever a solution to this?

    I’m having the same exact issue.

    I’m trying to use the code above along with several other snippets of code didn’t work for me.

    I’m working with a custom post type (projects) and I’m trying to page through each post within projects. I deactivated all plugins and removed everything except style.css (simply importing parent theme) from my child-themes folder. I’m using a Wootheme.

    Any advice?

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Prev / Next Post navigation in single.php skipping posts’ is closed to new replies.