mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
7 lines
181 B
Text
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();
|
|
}
|
|
});
|