searchwp\index\rebuild
Da: 4.0.0
Indice
Questa azione viene attivata ogni volta che l'indice viene resettato, poco prima che venga attivato il processo di ricostruzione.
Parametri
Non ci sono parametri per questo hook.
Esempi
All hooks should be added to your custom SearchWP Customizations Plugin.
Invia un'email quando l'indice viene reimpostato
Invia un'email all'amministratore del sito quando l'indice viene reimpostato
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.' | |
| ); | |
| } ); |

