Estoy usando el siguiente código de plantilla para mostrar enlaces de archivos adjuntos: $args = array( 'post_type' => 'attachment', 'numberposts' => -1, 'post_status' => null, 'post_parent' => $main_post_id ); $attachments = get_posts($args); foreach ($attachments as...