7
첨부 파일의 크기는 어떻게 구합니까?
첨부 파일 링크를 표시하기 위해 다음 템플릿 코드를 사용하고 있습니다. $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); } 그러나 링크 후에 파일의 크기를 표시해야합니다. 어떻게해야합니까? 나는 파일의 경로를 결정할 수 추측 …