Version Description
Download this release
Release Info
Developer | GamerZ |
Plugin | WP-PageNavi |
Version | 2.93.3 |
Comparing to | |
See all releases |
Code changes from version 2.93.2 to 2.93.3
- readme.txt +4 -1
- scb/AdminPage.php +0 -23
- wp-pagenavi.php +1 -1
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://lesterchan.net/site/donation/
|
|
4 |
Tags: navigation, pagination, paging, pages
|
5 |
Requires at least: 3.2
|
6 |
Tested up to: 5.4
|
7 |
-
Stable tag: 2.93.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -147,6 +147,9 @@ You can do that like so:
|
|
147 |
`<?php wp_pagenavi( array( 'options' => PageNavi_Core::$options->get_defaults() ) ); ?>`
|
148 |
|
149 |
## Changelog
|
|
|
|
|
|
|
150 |
### 2.93.2
|
151 |
* NEW: Bumped to WordPress 5.4
|
152 |
* FIXED: Ensure Action Links is always an array
|
4 |
Tags: navigation, pagination, paging, pages
|
5 |
Requires at least: 3.2
|
6 |
Tested up to: 5.4
|
7 |
+
Stable tag: 2.93.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
147 |
`<?php wp_pagenavi( array( 'options' => PageNavi_Core::$options->get_defaults() ) ); ?>`
|
148 |
|
149 |
## Changelog
|
150 |
+
### 2.93.3
|
151 |
+
* FIXED: Update SCB Framework To Remove contextual_help
|
152 |
+
|
153 |
### 2.93.2
|
154 |
* NEW: Bumped to WordPress 5.4
|
155 |
* FIXED: Ensure Action Links is always an array
|
scb/AdminPage.php
CHANGED
@@ -133,7 +133,6 @@ abstract class scbAdminPage {
|
|
133 |
}
|
134 |
|
135 |
add_action( 'admin_menu', array( $this, 'page_init' ), $this->args['admin_action_priority'] );
|
136 |
-
add_filter( 'contextual_help', array( $this, '_contextual_help' ), 10, 2 );
|
137 |
|
138 |
if ( $file ) {
|
139 |
$this->file = $file;
|
@@ -529,28 +528,6 @@ abstract class scbAdminPage {
|
|
529 |
}
|
530 |
}
|
531 |
|
532 |
-
/**
|
533 |
-
* Adds contextual help.
|
534 |
-
*
|
535 |
-
* @param string $help
|
536 |
-
* @param string|object $screen
|
537 |
-
*
|
538 |
-
* @return string
|
539 |
-
*/
|
540 |
-
public function _contextual_help( $help, $screen ) {
|
541 |
-
if ( is_object( $screen ) ) {
|
542 |
-
$screen = $screen->id;
|
543 |
-
}
|
544 |
-
|
545 |
-
$actual_help = $this->page_help();
|
546 |
-
|
547 |
-
if ( $screen == $this->pagehook && $actual_help ) {
|
548 |
-
return $actual_help;
|
549 |
-
}
|
550 |
-
|
551 |
-
return $help;
|
552 |
-
}
|
553 |
-
|
554 |
/**
|
555 |
* Displays page content.
|
556 |
*
|
133 |
}
|
134 |
|
135 |
add_action( 'admin_menu', array( $this, 'page_init' ), $this->args['admin_action_priority'] );
|
|
|
136 |
|
137 |
if ( $file ) {
|
138 |
$this->file = $file;
|
528 |
}
|
529 |
}
|
530 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
531 |
/**
|
532 |
* Displays page content.
|
533 |
*
|
wp-pagenavi.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP-PageNavi
|
4 |
Plugin URI: https://lesterchan.net/portfolio/programming/php/
|
5 |
Description: Adds a more advanced paging navigation to your WordPress blog
|
6 |
-
Version: 2.93.
|
7 |
Author: Lester 'GaMerZ' Chan
|
8 |
Author URI: https://lesterchan.net
|
9 |
Text Domain: wp-pagenavi
|
3 |
Plugin Name: WP-PageNavi
|
4 |
Plugin URI: https://lesterchan.net/portfolio/programming/php/
|
5 |
Description: Adds a more advanced paging navigation to your WordPress blog
|
6 |
+
Version: 2.93.3
|
7 |
Author: Lester 'GaMerZ' Chan
|
8 |
Author URI: https://lesterchan.net
|
9 |
Text Domain: wp-pagenavi
|