Fix warning of getting property of null object
-
I have this error when redirected to WordPress 404 page
Notice: Trying to get property of non-object in /var/www/site.com/wp-content/plugins/inline-spoilers/inline-spoilers.php on line 65
To fix it I changed the line inline-spoilers.php on line 65 to
if ( !is_null($post) && has_shortcode( $post->post_content, 'spoiler' ) ) {
- The topic ‘Fix warning of getting property of null object’ is closed to new replies.