2
100
10K
0
17 December 2013
26 October 2011
Based on 2 on WordPress.org
You can Check FAQ on my website :
WP-SEO-Paginate
Install and Activate
wp-seo-paginate
folder and its contents into the wp-content/plugins/
directory of your WordPress installationImplement
For posts pagination:
1) Open the theme files where you’d like pagination to be used. Usually this is the loop.php
file. For older version of WordPress, you may need to update the index.php
, archive.php
and search.php
files.
2) Replace your existing previous_posts_link()
and next_posts_link()
code block with the following:
<?php if(function_exists('wp_paginate')) {
wp_paginate();
} ?>
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-SEO-Paginate settings, if necessary, from the WP-SEO-Paginate option in the Settings menu
2) The styles can be changed with the following methods:
wp-seo-paginate.css
file in your theme’s directory and place your custom CSS therestyles.css
wp-seo-paginate.css
file in the wp-seo-paginate plugin directoryNote: The first two options will ensure that WP-SEO-Paginate updates will not overwrite your custom styles.