7
Como obtenho o tamanho de um arquivo anexo?
Estou usando o seguinte código de modelo para exibir links de anexo: $args = array( 'post_type' => 'attachment', 'numberposts' => -1, 'post_status' => null, 'post_parent' => $main_post_id ); $attachments = get_posts($args); foreach ($attachments as $attachment) { the_attachment_link($attachment->ID, false); } mas após o link, preciso exibir o tamanho do arquivo. Como …