Created
December 6, 2014 04:46
-
-
Save amdrew/e0437f3df26cc1f54f5c to your computer and use it in GitHub Desktop.
Easy Digital Downloads - show dimensions of image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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