Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. wp_redirect( $new_file_url );
  2. exit;
  3.  
  4. header( 'Content-Transfer-Encoding: Binary' );
  5. header( 'Content-Disposition: attachment; filename="pdf.pdf"' );
  6.  
  7. // From saved file
  8. readfile( $file_path );
  9.  
  10. // OR from memory
  11. echo $file_contents;
  12.  
  13. exit;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement