In opposite to get_post_format, the conditional has_post_format() function returns a boolean value and should be the perfect function for a conditional check like:
if ( has_post_format( array( 'gallery', 'image' ) ) {
// I'm a gallery or image format post; do something
}
(see this answer)
Unfortunately, has_post_format() is not sufficient to check for the standard post format. So how would I achieve something like:
if ( has_post_format( 'standard' ) {
// I'm a standard format post
}
