Recent

wzkb_help_widget_suggested_articles filter Pro 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/help-widget/class-help-widget.php line 146

Parameters

TypeNameDescription
array$article_idsArray of post IDs to suggest (empty by default).
int$current_idCurrent post/page ID.

Usage

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