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
<?php | |
// Disable SearchWP Admin Bar entry. | |
add_filter( 'searchwp\admin_bar', '__return_false' ); |