Products count for widgets and shortcodes.
Parameters
- count – suggested products count, that can be displayed.
Usage
<?php
function change_products_of_day_widget_products_count ( $count ) {
//your code here
return $count;
}
add_filter( 'products_of_day_widget_products_count', 'change_products_of_day_widget_products_count' );
?>