Forked from anonymous/WordPress disable the attachment page by redirecting
Last active
December 7, 2016 16:28
-
-
Save ollietreend/63d41dbb6e14c5da8825 to your computer and use it in GitHub Desktop.
Disable WordPress media attachment page by redirecting to the parent post. Original idea from: http://www.wpbeginner.com/wp-tutorials/how-to-disable-image-attachment-pages-in-wordpress/
This file contains 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 | |
/** | |
* Disables the media attachment page by redirecting the user elsewhere. | |
* Save as 'image.php' in theme. | |
* Inspired by http://www.wpbeginner.com/wp-tutorials/how-to-disable-image-attachment-pages-in-wordpress/ | |
*/ | |
if ($post->post_parent) { | |
wp_redirect(get_permalink($post->post_parent), 301); | |
} else { | |
wp_redirect(site_url(), 301); | |
} | |
die(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment