I'm new in php and having problem with a piece of my code if the key given exist. The code of error are below and i don't have a idea what is causing it. Please help.
"Warning: array_key_exists() expects parameter 2 to be array, boolean given in"
The line
if ( is_array(array_key_exists('sizes',wp_get_attachment_metadata($attach_id)) == false ){}
wp_get_attachment_metadata($attach_id)is returning abooleaninstead of an array. Usually meaning the metadata for those attachments weren't found.is_array(array_key_exists(...does not make much sense. array_key_exists returns an bool, and is_array expects an array ...