wzkb_rating_block_output
Filters the rendered HTML of the top rated articles block.
Type: filter
Since: 3.0.0
Source: includes/pro/blocks/class-blocks.php line 211
Parameters
| Type | Name | Description |
|---|---|---|
string |
$output |
Block HTML. |
array |
$attributes |
Block attributes. |
\WP_Query|null |
$query |
Query used to build the list, when available. |
Usage
add_filter( 'wzkb_rating_block_output', function($output, $attributes, $query) {
// ...
return $output;
} );