Output markup before the SearchWP settings navigation bar
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 | |
function my_searchwp_settings_before_header() { | |
echo 'Before settings header'; | |
} | |
add_action( 'searchwp_settings_before_header', 'my_searchwp_settings_before_header' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment