Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created June 17, 2015 16:22
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/892b56ace37179a8064c to your computer and use it in GitHub Desktop.
Save jchristopher/892b56ace37179a8064c to your computer and use it in GitHub Desktop.
Output markup at the bottom of any SearchWP settings screen
<?php
function my_searchwp_settings_footer() {
echo 'SearchWP settings footer';
}
add_action( 'searchwp_settings_footer', 'my_searchwp_settings_footer' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment