Hey everyone.
Got stuck on this little thing today.
I want to pull all attachments that are pictures with a description of logo into a select element.
It just ignores the 'post_content' => 'Logo', part.
$args = array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_content' => 'Logo',
'post_mime_type' => array('image/gif','image/png','image/jpg','image/jpeg'),
'post_status' => null,
'post_parent' => null, // any parent
);