Undefined Index Errors
-
With
WP_DEBUG
on and the Post and Page options turned off, you get the following errors:Notice: Undefined index: post in C:\xampp\htdocs\dad\wp-content\plugins\dc-simple-share-buttons\doncaprio-social-plugin.php on line 26
Notice: Undefined index: page in C:\xampp\htdocs\dad\wp-content\plugins\dc-simple-share-buttons\doncaprio-social-plugin.php on line 27
Here’s at least one way to solve it:
$displaypost = isset( $option['post'] ) ? $option['post'] : false; $displaypage = isset( $option['page'] ) ? $option['page'] : false;
- The topic ‘Undefined Index Errors’ is closed to new replies.