searchwp\index\rebuild
Desde: 4.0.0
Tabla de contenidos
Esta acción se dispara cada vez que se restablece el índice, justo antes de que se active el trabajo de reconstrucción.
Parámetros
No hay parámetros para este hook.
Ejemplos
All hooks should be added to your custom SearchWP Customizations Plugin.
Enviar un correo electrónico cuando se restablezca el índice
Enviar un correo electrónico al administrador del sitio cuando se restablezca el índice
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Send an email to the site adminstrator when the SearchWP Index is reset. | |
| add_action( 'searchwp\index\rebuild', function() { | |
| wp_mail( | |
| get_option( 'admin_email' ), | |
| 'SearchWP Index Reset', | |
| 'The SearchWP Index has been reset.' | |
| ); | |
| } ); |

