Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter NikolaiR

    (@nikolair)

    Thread Starter NikolaiR

    (@nikolair)

    Thanks. I actually ended up using that plugin. I was wondering though, is it possible to reverse the navigation i.e. the right button currently takes you to the previous (older) post and the left one to the next (newer). I and the users of my blog find this awkward. I think we’re all used to browser forward (next item) with the right button. Can this be reversed?

    Thread Starter NikolaiR

    (@nikolair)

    Solved it with Pagination for Pages plugin. Added this code to functions.php :

    function navpost () {
    	if (function_exists('pagination_for_pages')) {
            echo pagination_for_pages('post_type=post&sort_column=post_date');
        }
    }
    add_action( 'genesis_after_post_content', 'navpost' );

    To style.css :

    .paginationForPages {
        list-style:none;
        text-align:center;
        margin:0;
        padding:0;
    }
    .paginationForPages li {
        display:inline;
        font-size:.9em;
        padding:0 .25em;
    }

    Thanks for your help.

    Thread Starter NikolaiR

    (@nikolair)

    I tried WP-Paginate and Simple Pagination with this function (using proper code for each plugin of course) in functions.php:

    function navpost () {
    	if(function_exists('wp_simple_pagination')) {
        wp_simple_pagination();
    	}
    }
    add_action( 'genesis_after_post_content', 'navpost' );

    It just adds links to post excerpts in the category archive but I already have them from genesis. I would like to have next/prev links on each post. Is it possible? Thanks

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