Skip to content

Instantly share code, notes, and snippets.

View ollietreend's full-sized avatar

Ollie Treend ollietreend

View GitHub Profile
@ollietreend
ollietreend / image.php
Last active December 7, 2016 16:28 — forked from anonymous/WordPress disable the attachment page by redirecting
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/
<?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 {