searchwp\admin_bar
Since: 4.0.0
Table of Contents
Control whether SearchWP’s Admin Bar entry is enabled.
Parameters
Type | Parameter | Default | Since |
---|---|---|---|
Boolean | $enabled |
current_user_can( \SearchWP\Settings::$capability ) |
4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Disable SearchWP Admin Bar entry
Disable SearchWP Admin Bar entry
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 SearchWP Admin Bar entry. | |
add_filter( 'searchwp\admin_bar', '__return_false' ); |