Your plugin throws a warning (Invalid argument)
-
Warning: Invalid argument supplied for foreach() in /public_html/wp-content/plugins/meta-box/inc/init.php on line 17
For anyone else who wants to fix this themselves:
Current code
$meta_boxes = apply_filters( 'rwmb_meta_boxes', array() ); foreach ( $meta_boxes as $meta_box ) { new RW_Meta_Box( $meta_box ); }
Fixed code
$meta_boxes = apply_filters( 'rwmb_meta_boxes', array() ); if ( isset( $meta_boxes ) ) foreach ( $meta_boxes as $meta_box ) new RW_Meta_Box( $meta_box );
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Your plugin throws a warning (Invalid argument)’ is closed to new replies.