Skip to content

Instantly share code, notes, and snippets.

@davidmaneuver
Last active November 11, 2018 08:56
Show Gist options
  • Save davidmaneuver/7a3700ef9c647cf7139d5eba668552b5 to your computer and use it in GitHub Desktop.
Save davidmaneuver/7a3700ef9c647cf7139d5eba668552b5 to your computer and use it in GitHub Desktop.
<?php
/**
* Serve 404 header whenever rendering the notound.twig template.
**/
add_filter('timber_render_file', function($template) {
if (strpos($template, 'notfound.twig')) {
status_header(404);
}
return $template;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment