Guest User

Untitled

a guest
Nov 25th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. <?php
  2. $material = get_field('materialy');
  3. ?>
  4.  
  5. <h2 class="page_section_title text_center"><?php echo $material['tytul']; ?></h2>
  6. <div class="files_all">
  7. <?php foreach($material['pliki'] as $plik){ ?>
  8. <div class="file_box">
  9.  
  10. <?php
  11. $attachment_id = $plik['plik'];
  12. $filesize = filesize( get_attached_file( $attachment_id ) ); // file size
  13. $filename_only = basename( get_attached_file( $attachment_id ) ); // Just the file name
  14. $filetype = wp_check_filetype($filename_only); // file type ?>
  15.  
  16.  
  17. <?php echo $filesize; ?>
  18. <?php echo $filetype['ext']; ?>
  19. <?php echo $filename_only; ?>
  20.  
  21.  
  22.  
  23. <a class="file_download text_center" download href=" <?php echo wp_get_attachment_url( $attachment_id ); ?>"><?php _e('Pobierz','muzeum'); ?> </a>
  24.  
  25.  
  26. </div>
  27.  
  28. <?php } ?>
  29. </div>
Add Comment
Please, Sign In to add comment