Looking to display non-image files in Gallery with logo specific to file type
WordPress has a native function wp_mime_type_icon() in wp-includes/post.php that you can use. Basic example: // $attachment should be a full post object if ( wp_attachment_is_image( $attachment->ID ) ) { echo wp_get_attachment_image( $attachment->ID, array( 480, 900 ), FALSE, array ( ‘class’ => ‘aligncenter’ ) ); } else { echo ‘<img src=”‘ . wp_mime_type_icon( $attachment->post_mime_type ) . … Read more