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.
<?php | |
add_action( 'searchwp_settings_view\my_view', function() { | |
echo 'This is the view named <code>my_view</code>.'; | |
} ); |