Recent

wzpa_widget_options filter

wzpa_widget_options

Filters arguments passed to wzpa_pop_posts for the widget.

Type: filter
Since: 1.0.0
Source: includes/frontend/widgets/class-authors-widget.php line 218

Parameters

TypeNameDescription
array$argumentsWidget options array
array$argsWidget arguments.
array$instanceSaved values from database.
mixed$id_baseThe widget ID.

Usage

add_filter( 'wzpa_widget_options', function($arguments, $args, $instance, $id_base) {
    // ...
    return $arguments;
} );