Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created January 4, 2018 15:10
Embed
What would you like to do?
Add output after SearchWP's settings screen header
<?php
add_action( 'searchwp_settings_after_header', function() {
echo 'This content appears after the header on all SearchWP settings screens.';
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment