Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Output markup before the SearchWP settings navigation bar
<?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