Answers for "wordpress logout redirect to localhost"

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

every wordpress page redirect to localhost ?

define('WP_HOME','http://example.com'); define('WP_SITEURL','http://example.com');
Posted by: Guest on June-25-2021

Code answers related to "wordpress logout redirect to localhost"

Browse Popular Code Answers by Language