Skip to content

Instantly share code, notes, and snippets.

@kaelri
Last active June 16, 2022 20:33
Show Gist options
  • Select an option

  • Save kaelri/7d8bb5c695c08a374c57e0f4d8c0890c to your computer and use it in GitHub Desktop.

Select an option

Save kaelri/7d8bb5c695c08a374c57e0f4d8c0890c 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() );
wp_redirect( $file_url );
exit;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment