wzkb_product_archive_grid
Filter the rendered product grid HTML.
Type: filter
Since: 3.0.0
Source: includes/frontend/class-display.php line 1099
Parameters
| Type | Name | Description |
|---|---|---|
string | $output | Markup for the grid. |
\WP_Term[] | $products | List of product terms. |
Usage
add_filter( 'wzkb_product_archive_grid', function($output, $products) {
// ...
return $output;
} );