Last active
June 16, 2022 20:33
-
-
Save kaelri/7d8bb5c695c08a374c57e0f4d8c0890c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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