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); } लेकिन लिंक के बाद मुझे फ़ाइल का आकार …