Cap problema podem fer el següent:
- Creem una pàgina root amb el WPML.
- Agafem la seva ID.
- Plantem el següent codi al functions.php del tema:
function redirect_root() {
if( is_page(843) ) {
wp_redirect( 'https://defsalabs.com/es/' );
exit;
}
}
add_action( 'template_redirect', 'redirect_root' );