searchwp\index\rebuild
Seit: 4.0.0
Diese Aktion wird jedes Mal ausgelöst, wenn der Index zurückgesetzt wird, kurz bevor der Wiederaufbau-Job ausgelöst wird.
Parameter
Es gibt keine Parameter für diesen Hook.
Beispiele
All hooks should be added to your custom SearchWP Customizations Plugin.
Senden Sie eine E-Mail, wenn der Index zurückgesetzt wird
Senden Sie eine E-Mail an den Website-Administrator, wenn der Index zurückgesetzt wird
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.' | |
| ); | |
| } ); |

