Version Description
- Tested with WordPress 5.5
Download this release
Release Info
Developer | AlanP57 |
Plugin | WP-Paginate |
Version | 2.1.0 |
Comparing to | |
See all releases |
Code changes from version 2.0.9 to 2.1.0
- readme.txt +5 -2
- wp-paginate.php +3 -3
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: maxfoundry, emartin24, AlanP57
|
3 |
Tags: paginate, pagination, navigation, page, wp-paginate, comments, rtl, seo, usability
|
4 |
Requires at least: 2.6.0 (2.7.0 for comments pagination)
|
5 |
-
Tested up to: 5.
|
6 |
-
Stable tag: 2.0
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -159,6 +159,9 @@ Example (also applies to `wp_paginate_comments()`):
|
|
159 |
When calling `wp_paginate_comments()`, WP-Paginate adds an extra class to the `ol` element, `wp-paginate-comments`.
|
160 |
|
161 |
== Changelog ==
|
|
|
|
|
|
|
162 |
= 2.0.9 =
|
163 |
* Fix inserting of empty style tag
|
164 |
|
2 |
Contributors: maxfoundry, emartin24, AlanP57
|
3 |
Tags: paginate, pagination, navigation, page, wp-paginate, comments, rtl, seo, usability
|
4 |
Requires at least: 2.6.0 (2.7.0 for comments pagination)
|
5 |
+
Tested up to: 5.5
|
6 |
+
Stable tag: 2.1.0
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
159 |
When calling `wp_paginate_comments()`, WP-Paginate adds an extra class to the `ol` element, `wp-paginate-comments`.
|
160 |
|
161 |
== Changelog ==
|
162 |
+
= 2.1.0 =
|
163 |
+
* Tested with WordPress 5.5
|
164 |
+
|
165 |
= 2.0.9 =
|
166 |
* Fix inserting of empty style tag
|
167 |
|
wp-paginate.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP-Paginate
|
4 |
Plugin URI: https://wordpress.org/plugins/wp-paginate/
|
5 |
Description: A simple and flexible pagination plugin for WordPress posts and comments.
|
6 |
-
Version: 2.0
|
7 |
Author: Max Foundry
|
8 |
Author URI: http://maxfoundry.com
|
9 |
Text Domain: 'wp-paginate'
|
@@ -60,7 +60,7 @@ if (!class_exists('WPPaginate')) {
|
|
60 |
/**
|
61 |
* @var string The plugin version
|
62 |
*/
|
63 |
-
public $version = '2.0
|
64 |
|
65 |
/**
|
66 |
* @var string The options string name for this plugin
|
@@ -728,7 +728,7 @@ if (!class_exists('WPPaginate')) {
|
|
728 |
else
|
729 |
$hide_standard_pagination = 'none';
|
730 |
?>
|
731 |
-
<input type="checkbox" id="hide-standard-pagination" name="hide-standard-pagination" <?php echo ($hide_standard_pagination === true) ? "checked='checked'" : ""; ?>/> <?php _e('Hide the standard theme default
|
732 |
</tr>
|
733 |
</table>
|
734 |
<p> </p>
|
3 |
Plugin Name: WP-Paginate
|
4 |
Plugin URI: https://wordpress.org/plugins/wp-paginate/
|
5 |
Description: A simple and flexible pagination plugin for WordPress posts and comments.
|
6 |
+
Version: 2.1.0
|
7 |
Author: Max Foundry
|
8 |
Author URI: http://maxfoundry.com
|
9 |
Text Domain: 'wp-paginate'
|
60 |
/**
|
61 |
* @var string The plugin version
|
62 |
*/
|
63 |
+
public $version = '2.1.0';
|
64 |
|
65 |
/**
|
66 |
* @var string The options string name for this plugin
|
728 |
else
|
729 |
$hide_standard_pagination = 'none';
|
730 |
?>
|
731 |
+
<input type="checkbox" id="hide-standard-pagination" name="hide-standard-pagination" <?php echo ($hide_standard_pagination === true) ? "checked='checked'" : ""; ?>/> <?php _e('Hide the standard theme default pagination.', 'wp-paginate'); ?></label></td>
|
732 |
</tr>
|
733 |
</table>
|
734 |
<p> </p>
|