Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

wp safe redirect

<?php
// Note: wp_safe_redirect() does not exit automatically, 
// and should almost always be followed by a call to exit
// This is for WordPress
?>
<?php
  // $url = string
  wp_safe_redirect( $url );
  exit;
?>
 
PREVIOUS NEXT
Tagged: #wp #safe #redirect
ADD COMMENT
Topic
Name
3+1 =