• Hello,
    I created post-based visual portfolio but cannot see next and previous links in the portfolio pages.
    What could be wrong, what would be your suggestion for a solution?
    Thanks

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Nikita

    (@nko)

    Hi.

    If you mean pagination on single portfolio pages, the plugin does nothing with these pages. This should be the part of theme features or another plugin.

    Regards, nK.

    Thread Starter gokced

    (@gokced)

    Ok, I got it and resolved.
    Thank you to lead me to the solution.
    Best

    Hola @gokced

    Hi. What do you think about the same problem? Can you help me as you put it? previous and next link of the publications … greetings

    Thread Starter gokced

    (@gokced)

    Hello, I added the code snippet to functions.php, but be careful with php files if you don’t use a framework/ theme that gives you opportunity to edit them.

    <?php

    add_action(‘genesis_after_entry’, ‘sk_custom_post_nav’);
    function sk_custom_post_nav() {

    if ( !is_singular(‘post’) )
    return;
    echo ‘<div class=”prev-next-post-links”>’;
    previous_post_link(‘<div class=”previous-post-link”>« Previous Post: %link</div>’, ‘%title‘, true);
    next_post_link(‘<div class=”next-post-link”>Next Post: %link »</div>’, ‘%title‘, true);
    echo ‘</div>’;

    }

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘next and previous post links’ is closed to new replies.