Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. function redirect() {
  3. if(true === $something) {
  4. /* @var WP_Query $wp_query */ global $wp_query;
  5. $wp_query->set_404();
  6. status_header( 404 );
  7. get_template_part( '404' );
  8. exit();
  9. }
  10. }
  11.  
  12. add_action( 'template_redirect', 'redirect' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement