Code-Snippets-Functions/Execute a function on a child site/WordPress/logout-redirect-home.txt

7 lines
181 B
Text

add_action('wp_logout',function(){
if(check_admin_referer('log-out')) {
$home_url = apply_filters("wplr_home_url",home_url( '/' ));
wp_redirect( $home_url );
exit();
}
});