Available since: 2.6
searchwp_settings_after\$my_view
When displaying a SearchWP settings view, this action is fired after $my_view
has been rendered.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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'; | |
} ); |