Skip to content

Instantly share code, notes, and snippets.

@lifoolgh
Last active October 17, 2017 16:18
Show Gist options
  • Save lifoolgh/4068beaea5b61b9b6f27e876dbeb7b14 to your computer and use it in GitHub Desktop.
Save lifoolgh/4068beaea5b61b9b6f27e876dbeb7b14 to your computer and use it in GitHub Desktop.
attachmentページでステータス404を返す
// attachmentページでステータス404を返す
add_action( 'template_redirect', 'status404' );
function status404() {
// attachmentページだった場合
if ( is_attachment() ) {
global $wp_query;
$wp_query->set_404();
status_header(404);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment