Skip to content

Instantly share code, notes, and snippets.

@amdrew
Created December 6, 2014 04:46
Show Gist options
  • Select an option

  • Save amdrew/e0437f3df26cc1f54f5c to your computer and use it in GitHub Desktop.

Select an option

Save amdrew/e0437f3df26cc1f54f5c to your computer and use it in GitHub Desktop.
Easy Digital Downloads - show dimensions of image
<?php
function sumobi_edd_get_download_file_dimensions() {
$download_files = edd_get_download_files( get_the_ID() );
if ( $download_files ) {
foreach ( $download_files as $file ) {
$attachment_id = $file['attachment_id'];
$image = wp_get_attachment_image_src( $attachment_id, 'full' );
$width = $image[1];
$height = $image[2];
echo 'Dimensions: ' . $width . 'px x ' . $height . 'px';
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment