• I’m seeing errors in my PHP log when viewing pages with this plugin installed.

    Error: Undefined index: insert
    Location: wp-content/plugins/wp-word-count/public/class-wpwc-public.php:123

    Here’s the current code:

    public function wpwordcount_reading_time_before_content($content) {
    
      global $post;
    
      if ($post && get_option('wpwc_reading_time')['insert'] == 'Y') {

    The fix is to check the option variable before accessing the ‘insert’ key:

    public function wpwordcount_reading_time_before_content($content) {
    
      global $post;
    
      $reading_time = get_option('wpwc_reading_time');
      if ($post && is_array($reading_time) && $reading_time['insert'] == 'Y') {
    • This topic was modified 2 years, 9 months ago by hargobind.
    • This topic was modified 2 years, 9 months ago by hargobind.
  • The topic ‘PHP notice’ is closed to new replies.