WP-Paginate Plugin WordPress, Download, Install

WP-Paginate Plugin WordPress

WP-Paginate is a simple and flexible pagination plugin which provides users with better navigation on your WordPress site.

WP-Paginate Download Now

Download Now

(If the link does not work)↓

Originals Link WordPress.org

https://wordpress.org/plugins/wp-paginate/

How to Install WP-Paginate Plugin, Manually

Install and Activate

  1. Unzip the downloaded WP-Paginate zip file
  2. Upload the wp-paginate folder and its contents into the wp-content/plugins/ directory of your WordPress installation
  3. Activate WP-Paginate from Plugins page

Implement

For posts pagination:
* Open the theme files where you’d like pagination to be used. Depending on your theme, this could be in a number of files, such as index.php, archive.php, categories.php, search.php, tag.php, or the functions.php file(s).The twentyeleven theme places the pagination code in functions.php in the twentyeleven_content_nav() function.

Examples:

For the twentytwelve theme, in index.php, replace:

<?php twentytwelve_content_nav( 'nav-below' ); ?> 

With:

<?php if(function_exists('wp_paginate')) {     wp_paginate(); } else {     twentytwelve_content_nav( 'nav-below' ); } ?>  

For the twentythirteen theme, in index.php, replace:

<?php twentythirteen_paging_nav(); ?> 

With:

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

For the twentyfourteen theme, in index.php, replace:

twentyfourteen_paging_nav(); 

With:

if(function_exists('wp_paginate')) {     wp_paginate(); } else {     twentyfourteen_paging_nav(); }  

For comments pagination:
1) Open the theme file(s) where you’d like comments pagination to be used. Usually this is the comments.php file.

2) Replace your existing previous_comments_link() and next_comments_link() code block with the following:

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

Configure

1) Configure the WP-Paginate settings, if necessary, from the WP-Paginate option in the Settings menu

2) The styles can be changed with the following methods:

  • Add a wp-paginate.css file in your theme’s directory and place your custom CSS there
  • Add your custom CSS to your theme’s styles.css
  • Modify the wp-paginate.css file in the wp-paginate plugin directory

Note: The first two options will ensure that WP-Paginate updates will not overwrite your custom styles.

Upgrading

To 1.1.1+:

  • Update WP-Paginate settings, change Before Markup to <div class="navigation">
  • Update wp-paginate.css, change .wp-paginate ol to .wp-paginate

Video

Screenshots

WP-Paginate Plugin WordPress

WP-Paginate Plugin WordPress

Plugin Not Working?

If any errors or problems with the plug-in then write comments.

Add a Comment

Your email address will not be published. Required fields are marked *