Descripción
Important: It is not recommended you leave debugging enabled when you’re done, the debug information exposes file paths of files as well as PHP arguments passed into functions from the PHP debug_backtrace() which may contain sensitive information.
For those times when you have a lot of plugins and theme functions interacting and you just need to figure out what / where it’s redirecting.
This plugin outputs information about each wp_redirect call done on the front of a site.
To enable redirect debugging on a site, add this to your wp-config.php file:
define( 'DEBUG_WP_REDIRECT', true );
To enable redirect debugging in the admin dashboard of a site, add this to your wp-config.php file:
define( 'DEBUG_WP_REDIRECT_ADMIN', true );
Instalación
- Unpack the entire contents of this plugin zip file into your
wp-content/plugins/
folder locally - Upload to your site
- Navigate to
wp-admin/plugins.php
on your site (your WP Admin plugin page) - Activate this plugin
OR you can just install it with WordPress by going to Plugins >> Add New >> and type this plugin’s name
FAQ
- Installation Instructions
-
- Unpack the entire contents of this plugin zip file into your
wp-content/plugins/
folder locally - Upload to your site
- Navigate to
wp-admin/plugins.php
on your site (your WP Admin plugin page) - Activate this plugin
OR you can just install it with WordPress by going to Plugins >> Add New >> and type this plugin’s name
- Unpack the entire contents of this plugin zip file into your
Reseñas
Colaboradores y desarrolladores
«Debug wp_redirect» es un software de código abierto. Las siguientes personas han colaborado con este plugin.
ColaboradoresTraduce «Debug wp_redirect» a tu idioma.
¿Interesado en el desarrollo?
Revisa el código , echa un vistazo al repositorio SVN o suscríbete al registro de desarrollo por RSS.
Registro de cambios
1.1
- Default for plugin is not to output unless
DEBUG_WP_REDIRECT
is defined and set to true - Updated plugin to allow for translations of text
- Cleaned up debugging output
1.0
- Just a simple wp_redirect debug plugin, nothing fancy to see here