---
title: Deshabilitar las sugerencias de redireccionamiento automático
url: "https://www.seopress.org/es/soporte/hooks/deshabilitar-las-sugerencias-de-redireccionamiento-automatico/"
lang: es
updated: 2021-09-29
hook_name: seopress_post_automatic_redirect
required_version: 4.0
---

# Deshabilitar las sugerencias de redireccionamiento automático

- **Hook name:** `seopress_post_automatic_redirect`
- **Required version:** 4.0

```php
//Disable automatic redirect notices in WP admin
add_filter( 'seopress_post_automatic_redirect', '__return_false' );
```

Source: [https://gist.github.com/wp-seopress/fb6442bba9e184e8f4d32614f7a3e4e6](https://gist.github.com/wp-seopress/fb6442bba9e184e8f4d32614f7a3e4e6)


Este fragmento debe agregarse a un [complemento imprescindible](https://www.seopress.org/es/soporte/guias/como-crear-un-complemento-mu/) para que funcione.
