WP-Paginate - Version 2.1.8

Version Description

  • Add the
Download this release

Release Info

Developer AlanP57
Plugin Icon 128x128 WP-Paginate
Version 2.1.8
Comparing to
See all releases

Code changes from version 2.1.7 to 2.1.8

Files changed (2) hide show
  1. readme.txt +8 -2
  2. wp-paginate.php +6 -2
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.8
6
- Stable tag: 2.1.7
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -161,6 +161,12 @@ Example (also applies to `wp_paginate_comments()`):
161
  When calling `wp_paginate_comments()`, WP-Paginate adds an extra class to the `ol` element, `wp-paginate-comments`.
162
 
163
  == Changelog ==
 
 
 
 
 
 
164
  = 2.1.6 =
165
  * Improved accessibility by adding aria-label attributes
166
 
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: 6.0
6
+ Stable tag: 2.1.8
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
161
  When calling `wp_paginate_comments()`, WP-Paginate adds an extra class to the `ol` element, `wp-paginate-comments`.
162
 
163
  == Changelog ==
164
+ = 2.1.8 =
165
+ * Add the <nav> tag to the list of allowed tags for pagination markup
166
+
167
+ = 2.1.7 =
168
+ * Tested with Wordpress 5.8
169
+
170
  = 2.1.6 =
171
  * Improved accessibility by adding aria-label attributes
172
 
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.1.7
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.1.7';
64
 
65
  /**
66
  * @var string The options string name for this plugin
@@ -549,6 +549,10 @@ if (!class_exists('WPPaginate')) {
549
  'class' => array(),
550
  'id' => array()
551
  ),
 
 
 
 
552
  'em' => array(),
553
  'strong' => array()
554
  );
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.8
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.8';
64
 
65
  /**
66
  * @var string The options string name for this plugin
549
  'class' => array(),
550
  'id' => array()
551
  ),
552
+ 'nav' => array(
553
+ 'class' => array(),
554
+ 'id' => array()
555
+ ),
556
  'em' => array(),
557
  'strong' => array()
558
  );