Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Last active January 4, 2018 14:58
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/dcf1357114ed5cbfa25ee674c78983e5 to your computer and use it in GitHub Desktop.
Save jchristopher/dcf1357114ed5cbfa25ee674c78983e5 to your computer and use it in GitHub Desktop.
Add output after a SearchWP settings screen view is rendered
<?php
add_action( 'searchwp_settings_after\my_view', function() {
echo 'This content is rendered after the <code>my_view</code> SearchWP settings screen is displayed';
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment