WP-Paginate - Version 2.0.3

Version Description

  • Added neon pink button style
Download this release

Release Info

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

Code changes from version 2.0.2 to 2.0.3

css/wp-paginate.css CHANGED
@@ -66,3 +66,17 @@ ol.wp-paginate li {
66
  .wp-paginate.wpp-blue-cta .current {
67
  opacity: .6;
68
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  .wp-paginate.wpp-blue-cta .current {
67
  opacity: .6;
68
  }
69
+
70
+ /* Theme: Pink Neon Buttons */
71
+ .wp-paginate.wpp-neon-pink a, .wp-paginate.wpp-neon-pink .current {
72
+ background: #54d3f4;
73
+ border:1px solid #eee;
74
+ border-radius: 6px;
75
+ color: #000;
76
+ }
77
+ .wp-paginate.wpp-neon-pink a, .wp-paginate.wpp-neon-pink .current {
78
+ background: #ff4ecd;
79
+ }
80
+ .wp-paginate.wpp-neon-pink .current {
81
+ opacity: .6;
82
+ }
images/neon-pink-buttons.png ADDED
Binary file
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: 4.7.2
6
- Stable tag: 2.0.2
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.2 =
163
  * Added new preset
164
  * Updated setting page screen shots
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: 4.9
6
+ Stable tag: 2.0.3
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.0.3 =
163
+ * Added neon pink button style
164
+
165
  = 2.0.2 =
166
  * Added new preset
167
  * Updated setting page screen shots
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.2
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.2';
64
 
65
  /**
66
  * @var string The options string name for this plugin
@@ -148,6 +148,7 @@ if (!class_exists('WPPaginate')) {
148
  array('default', __('Grey Buttons', 'wp-paginate'), 'default.jpg'),
149
  array('wpp-blue-cta', __('Blue Buttons', 'wp-paginate'), 'blue-cta-buttons.jpg'),
150
  array('wpp-modern-grey', __('Modern Grey Buttons', 'wp-paginate'), 'modern-grey-buttons.jpg'),
 
151
  );
152
 
153
  if ($this->options['css'])
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.3
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.0.3';
64
 
65
  /**
66
  * @var string The options string name for this plugin
148
  array('default', __('Grey Buttons', 'wp-paginate'), 'default.jpg'),
149
  array('wpp-blue-cta', __('Blue Buttons', 'wp-paginate'), 'blue-cta-buttons.jpg'),
150
  array('wpp-modern-grey', __('Modern Grey Buttons', 'wp-paginate'), 'modern-grey-buttons.jpg'),
151
+ array('wpp-neon-pink', __('Neon Pink Buttons', 'wp-paginate'), 'neon-pink-buttons.png'),
152
  );
153
 
154
  if ($this->options['css'])