Skip to content

Instantly share code, notes, and snippets.

@kaelri
Last active June 16, 2022 20:33
Show Gist options
  • Save kaelri/a88f813b682ab9ae39f7ce4eec597140 to your computer and use it in GitHub Desktop.
Save kaelri/a88f813b682ab9ae39f7ce4eec597140 to your computer and use it in GitHub Desktop.
<?php
add_action( 'get_header', function() {
if ( !is_attachment() ) return;
$file_url = wp_get_attachment_url( get_the_ID() );
$file_name = basename( $file_url );
header( sprintf('Content-type: %s', get_post_mime_type() ) );
header( sprintf('Content-Disposition: attachment; filename="%s"', $file_name ) );
readfile( get_attached_file( get_the_ID() ) );
exit;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment