Available since: 2.6
searchwp_settings_before_header
SearchWP renders its own header on all settings screens, this action fires before that header has been rendered.
This file contains 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 | |
add_action( 'searchwp_settings_before_header', function() { | |
echo 'This content appears before the header on all SearchWP settings screens.'; | |
} ); |