Select Page

Products count per line or per slide for sliders type in widgets and shortcodes.

Parameters

  1. count – products per line.

Usage

<?php
function change_products_of_day_widget_count_line ( $count ) {
//your code here
    return $count;
}

add_filter( 'products_of_day_widget_count_line', 'change_products_of_day_widget_count_line' );
?>