Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. add_action('template_redirect', 'add_header_redirect', 0, 0);
  2. function add_header_redirect(){
  3. if( is_page(array(8, 'testimonials', 'Testimonials')) ){
  4. $default_testimonial = get_permalink( 19 );
  5. header("Location: $default_testimonial");
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement