wzkb_help_widget_show
Filter whether to show the help widget on current page.
Allows conditional display of help widget based on page type, user role, etc.
Type: filter
Since: 3.0.0
Source: includes/help-widget/class-help-widget.php line 321
Parameters
| Type | Name | Description |
|---|---|---|
bool | $show | Whether to show help widget (default: true). |
Usage
add_filter( 'wzkb_help_widget_show', function($show) {
// ...
return $show;
} );