searchwp\admin\dashboard_widgets\statistics
Since: 4.0.0
Table of Contents
As part of SearchWP’s Statistics feature a Dashboard Widget is provided to allow for quick oversight into your search statistics when you log in to your WordPress Admin.
Parameters
Type | Parameter | Default | Since |
---|---|---|---|
Boolean | $enabled |
true |
4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Disable Statistics Dashboard Widget
Disable the Statistics Dashboard Widget
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 | |
// Disable the SearchWP Statistics Dashboard Widget. | |
add_filter( 'searchwp\admin\dashboard_widgets\statistics', '__return_false' ); |