Home › Forums › General Issues › get filesize? › Reply To: get filesize?
finally got it:`
<?php $attachment_id = get_field('download');
$url = wp_get_attachment_url( $attachment_id );
$title = get_the_title( $attachment_id );
// part where to get the filesize
$filesize = filesize( get_attached_file( $attachment_id ) );
$filesize = size_format($filesize, 2);
// show custom field
if (get_field('download')): ?>
<a href=”<?php echo $url; ?>” ><?php echo $title; ?></a>
<!– show filesize –>
<?php echo $filesize; ?>
<?php endif; ?>
`
🙂 <- happy
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.