Available since: 2.6
searchwp_settings_view\$my_view
This action is responsible for rendering the SearchWP settings view content when displaying a SearchWP settings screen.
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_view\my_view', function() { | |
echo 'This is the view named <code>my_view</code>.'; | |
} ); |