5.16.0 #33
@ -437,7 +437,7 @@ if ( ! defined( 'FICTIONEER_ALLOWED_PAGE_TEMPLATES' ) ) {
|
|||||||
*
|
*
|
||||||
* @since 5.12.3
|
* @since 5.12.3
|
||||||
* @since 5.15.0 - Add Patreon checks.
|
* @since 5.15.0 - Add Patreon checks.
|
||||||
* @since 5.16.0 - Add Patreon unlock checks.
|
* @since 5.16.0 - Add Patreon unlock checks and static variable cache.
|
||||||
*
|
*
|
||||||
* @param bool $required Whether the user needs to supply a password.
|
* @param bool $required Whether the user needs to supply a password.
|
||||||
* @param WP_Post $post Post object.
|
* @param WP_Post $post Post object.
|
||||||
@ -446,13 +446,26 @@ if ( ! defined( 'FICTIONEER_ALLOWED_PAGE_TEMPLATES' ) ) {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
function fictioneer_bypass_password( $required, $post ) {
|
function fictioneer_bypass_password( $required, $post ) {
|
||||||
|
// Static variable cache
|
||||||
|
static $cache = [];
|
||||||
|
|
||||||
|
$cache_key = $post->ID . '_' . (int) $required;
|
||||||
|
|
||||||
|
if ( isset( $cache[ $cache_key ] ) ) {
|
||||||
|
return $cache[ $cache_key ];
|
||||||
|
}
|
||||||
|
|
||||||
// Already passed
|
// Already passed
|
||||||
if ( ! $required ) {
|
if ( ! $required ) {
|
||||||
|
$cache[ $cache_key ] = $required;
|
||||||
|
|
||||||
return $required;
|
return $required;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Always allow admins
|
// Always allow admins
|
||||||
if ( current_user_can( 'manage_options' ) ) {
|
if ( current_user_can( 'manage_options' ) ) {
|
||||||
|
$cache[ $cache_key ] = false;
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -533,6 +546,9 @@ function fictioneer_bypass_password( $required, $post ) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Cache
|
||||||
|
$cache[ $cache_key ] = $required;
|
||||||
|
|
||||||
// Continue filter
|
// Continue filter
|
||||||
return $required;
|
return $required;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user