Recent

wzkb_help_widget_suggested_articlesfilterPro only

wzkb_help_widget_suggested_articles

Filter suggested article IDs for help widget.

Allows customization of which articles are suggested based on current page context.

Type: filter
Since: 3.0.0
Source: includes/pro/help-widget/class-help-widget.php line 153

Parameters

Type Name Description
array $article_ids Array of post IDs to suggest (empty by default).
int $current_id Current post/page ID.

Usage

add_filter( 'wzkb_help_widget_suggested_articles', function($article_ids, $current_id) {
    // ...
    return $article_ids;
} );