As previously asked, is this plugin still maintained? In the repository it states, “This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.”
Thanks.
]]>When will this plugin be updated to current WordPress versions?
Is this plugin abandoned?
Get following error message in my log:
“Trying to get property of non-object in […]/bb-delete-cache.php on line 98”
This is because the global variable $post is not always set. Add if( $post ) { … }
around the code.
For instance, change line 92 from if( !is_admin() ) {
to if( $post && ! is_admin() ) {
.