Answers for "wordpress page auto redirect to another website"

PHP
0

wordpress logout redirect to home

// On functions.php of your child theme or in a code snippet:
add_action('wp_logout','auto_redirect_after_logout');
function auto_redirect_after_logout(){
  wp_redirect( home_url() );
  exit();
}
Posted by: Guest on July-15-2021
0

In wordpress, how to redirect after a comment back to the referring page?

add_filter('comment_post_redirect', 'redirect_after_comment');
function redirect_after_comment($location)
{
return $_SERVER["HTTP_REFERER"];
}
Posted by: Guest on November-09-2020

Code answers related to "wordpress page auto redirect to another website"

Browse Popular Code Answers by Language