Available since: 2.4.5
searchwp_dashboard_widget
SearchWP ships with a Dashboard Widget showing engine statistics right when you log in to WordPress. If you would prefer to have SearchWP omit outputting this Widget entirely you can add the following to your theme’s functions.php
:
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_filter( 'searchwp_dashboard_widget', '__return_false' ); |