Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created June 17, 2015 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jchristopher/69f8423914599ed83033 to your computer and use it in GitHub Desktop.
Save jchristopher/69f8423914599ed83033 to your computer and use it in GitHub Desktop.
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