Skip to content

Instantly share code, notes, and snippets.

@amsgator
Created April 7, 2019 23:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amsgator/e1ecda70bf561cd276c62cb0b9547443 to your computer and use it in GitHub Desktop.
Save amsgator/e1ecda70bf561cd276c62cb0b9547443 to your computer and use it in GitHub Desktop.
Redirect Attachment URLs to the Attachment Itself
<?php
function redirect_attachment_urls() {
if ( is_attachment() ) {
wp_redirect( wp_get_attachment_url(), 301 );
exit();
}
}
add_action( 'template_redirect', 'redirect_attachment_urls' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment