Answers for "redirect url wordpress config"

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

define home url wordpress config.php

// Add the below to your wp-config.php file (replace example.com with your domain)
define('WP_HOME','http://example.com'); 
define('WP_SITEURL','http://example.com');
Posted by: Guest on December-15-2021

Code answers related to "redirect url wordpress config"

Browse Popular Code Answers by Language