PHP Warning: Invalid argument supplied for foreach()
-
I saw in the cpanel that I am getting a lot of errors in error log file.
PHP Warning: Invalid argument supplied for foreach() in /home/*****/public_html/wp-includes/script-loader.php on line 2841.
This is the code in line 2841.
`foreach ( $wp_styles->queue as $handle ) {
if ( wp_styles()->get_data( $handle, ‘path’ ) && file_exists( $wp_styles->registered[ $handle ]->extra[‘path’] ) ) {
$styles[] = array(
‘handle’ => $handle,
‘src’ => $wp_styles->registered[ $handle ]->src,
‘path’ => $wp_styles->registered[ $handle ]->extra[‘path’],
‘size’ => filesize( $wp_styles->registered[ $handle ]->extra[‘path’] ),
);
}
}
Can someone tell me why this error is coming and what is the solution?The page I need help with: [log in to see the link]
- The topic ‘PHP Warning: Invalid argument supplied for foreach()’ is closed to new replies.