Display custom post type attached media file sizes
From your array, you should get the Media ID of the videos. If you have the media ID, it will be as listed below: // Let’s say you have the media ID $meta = filesize( get_attached_file( $attachment_id ) ); By using the size format function you can list the size echo size_format($meta); Update according to … Read more