Forums

[Plugin: WP-Paginate] Not VIsible pagination (3 posts)

  1. wickedsunny1
    Member
    Posted 2 months ago #

    Hiiz,
    i just installd thsi mod but nothing visible in my navigation div. need assistance.
    http://www.designzzz.com
    Designzzz

    http://wordpress.org/extend/plugins/wp-paginate/

  2. emartin24
    Member
    Posted 2 months ago #

    Hello,

    Did you update your theme files to include the wp_paginate function [1]?

    You need to edit index.php, archive.php and search.php and replace:

    <div class="navigation">
    	<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
    	<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
    </div>

    With:

    <?php if(function_exists('wp_paginate')) {
        wp_paginate();
    } ?>

    If that doesn't get it working, let me know.

    [1] http://wordpress.org/extend/plugins/wp-paginate/installation/

  3. wickedsunny1
    Member
    Posted 2 months ago #

    woo hoo superb man !! works like a charm , full ratings :)

Reply

You must log in to post.

About this Topic