searchwp\admin\dashboard_widgets\statistics
4.0.0以降
パラメータ
| タイプ | パラメータ | デフォルト | 提供開始 |
|---|---|---|---|
| ブール値 | $enabled |
true |
4.0.0 |
例
すべてのフックはカスタムのSearchWP カスタマイズプラグインに追加する必要があります。
統計ダッシュボードウィジェットを無効にする
統計ダッシュボードウィジェットを無効にします。
This file contains hidden or 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' ); |


