068-1752465info@onmywaystudio.netClients in Israel, Japan, Australia Europe, Hong Kong, Singapore, Indonesia, the Philippines, China, India, the United Arab Emirates and the USA
Перенаправлення на домашню сторінку під час виходу з WordPress
// 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();
}